I have made
appbar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0
),
Still I'm getting this
How to get that seamless transition between the Scaffold and the notification center?
I have made
appbar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0
),
Still I'm getting this
How to get that seamless transition between the Scaffold and the notification center?
Use this if you want your application to use transparent statusbar. Transparent status bar in flutter
@override
Widget build(BuildContext context) {
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
),
child: MaterialApp(
title: 'Test',
);
}