fix: Formatting and style
This commit is contained in:
parent
91f52956f0
commit
f8736a9da5
3 changed files with 9 additions and 7 deletions
|
|
@ -80,9 +80,14 @@ class FluffyChatApp extends StatelessWidget {
|
|||
builder: (context) {
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
SystemChrome.setSystemUIOverlayStyle(
|
||||
Theme.of(context).brightness == Brightness.light
|
||||
? SystemUiOverlayStyle.light
|
||||
: SystemUiOverlayStyle.dark,
|
||||
SystemUiOverlayStyle(
|
||||
statusBarColor: Colors.transparent,
|
||||
systemNavigationBarColor: Theme.of(context).backgroundColor,
|
||||
systemNavigationBarIconBrightness:
|
||||
Theme.of(context).brightness == Brightness.light
|
||||
? Brightness.dark
|
||||
: Brightness.light,
|
||||
),
|
||||
);
|
||||
});
|
||||
return Matrix(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue