[ad_1]
For SystemChrome you must add bundle
import 'bundle:flutter/providers.dart';
for panorama mode add this code
void initState() {
tremendous.initState();
//for panorama mode
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeRight,
DeviceOrientation.landscapeLeft,
]);
}
You get regular web page
@override
dispose(){
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
DeviceOrientation.landscapeRight,
DeviceOrientation.landscapeLeft,
]);
tremendous.dispose();
}
[ad_2]
