Fix drawer tile splash

Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
Sahil Kumar
2021-01-08 19:42:27 +05:30
parent c931e5142d
commit d074bf8d9f
-3
View File
@@ -166,8 +166,6 @@ class _HomePageState extends State<HomePage> {
Drawer _buildDrawer(BuildContext context, User user) { Drawer _buildDrawer(BuildContext context, User user) {
return Drawer( return Drawer(
child: Container(
color: StreamChatTheme.of(context).colorTheme.white,
child: SafeArea( child: SafeArea(
child: Padding( child: Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(
@@ -278,7 +276,6 @@ class _HomePageState extends State<HomePage> {
), ),
), ),
), ),
),
); );
} }
} }