skip to Main Content

Flutter rotate the screen

void _rotateScreen() { final currentOrientation = MediaQuery.of(context).orientation; if (currentOrientation == Orientation.portrait) { SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitDown, ]); } else { SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitUp, ]); } setState(() {}); } when i click the button screen is rotating down but if screen is down its…

VIEW QUESTION
Back To Top
Search