flutter强制横屏竖屏设置
import 'package:flutter/services.dart';void main(){// 强制横屏SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeLeft,DeviceOrientation.landscapeRight]);runApp(new MyApp());}void main(){//
·
import 'package:flutter/services.dart';
void main(){
// 强制横屏
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeLeft,
DeviceOrientation.landscapeRight
]);
runApp(new MyApp());
}
void main(){
// 强制竖屏
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown
]);
runApp(new MyApp());
}
更多推荐



所有评论(0)