-
Notifications
You must be signed in to change notification settings - Fork 0
/
Flutter - SafeArea with SliverAppBar turns status bar into white
54 lines (50 loc) · 1.64 KB
/
Flutter - SafeArea with SliverAppBar turns status bar into white
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData.light().copyWith(
primaryColor: Colors.red,
),
home: Scaffold(
// I'm using RED as primary color, Using safe area turns status bar into white, why?
// how do I make status bar same as appbar (RED) and bring back all notifications on status bar??
body: SafeArea(
child: NestedScrollView(
headerSliverBuilder: (context, innerBoxIsScrolled) => [
SliverAppBar(
title: new Text("Sliver Appbar"),
centerTitle: true,
floating: true,
snap: true,
),
],
body: ListView(
// avoid the safe area top padding
padding: EdgeInsets.only(top: 0.0),
children: <Widget>[
ListTile(title: Text("Row 1")),
ListTile(title: Text("Row 2")),
],
)),
),
),
// home: Scaffold(
// appBar: AppBar(
// title: Text("Normal Appbar"),
// ),
// body: ListView(
// // avoid the safe area top padding
// padding: EdgeInsets.only(top: 0.0),
//
// children: <Widget>[
// ListTile(title: Text("Row 1")),
// ListTile(title: Text("Row 2")),
// ],
// )),
);
}
}