#flutter #flutter-layout
#трепетание #трепещущий макет
Вопрос:
Ответ №1:
с помощью приведенного ниже кода в классе MaterialApp main.dart
оберните:-
AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle(
statusBarColor: Colors.transparent, //set as per your status bar color
systemNavigationBarColor: Colors.black, //set as per your navigation bar color
statusBarIconBrightness: Brightness.dark, //set as per your status bar icons' color
systemNavigationBarIconBrightness: Brightness.dark,
),
child: MaterialApp(
Комментарии:
1. Это не помогло, оно все то же самое :/
2. похоже, причиной такого поведения был виджет SafeArea, я обернул его контейнером и придал ему цвет, теперь все хорошо 🙂