We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Disabled the top bar gesture event when the mobile orientation changes
Reproduction code example:
void main() { WidgetsFlutterBinding.ensureInitialized(); FlutterStatusbarcolor.setStatusBarColor(Colors.red); SystemChrome.setPreferredOrientations([ DeviceOrientation.landscapeLeft, ]); runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return Container( color: Colors.white, width: double.infinity, height: double.infinity, ); } }
To Reproduce
Screenshots
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Disabled the top bar gesture event when the mobile orientation changes
Reproduction code
example:
To Reproduce
Screenshots
The text was updated successfully, but these errors were encountered: