Skip to content

Commit

Permalink
Update main.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
FatimaSalah212 authored Aug 28, 2022
1 parent fc4fa78 commit 8ea37b7
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'main_page/main_page.dart';


void main() {

runApp(const MyApp());
}

Expand All @@ -17,9 +19,18 @@ class MyApp extends StatelessWidget {

),
debugShowCheckedModeBanner: false,
home: const Scaffold(
backgroundColor: Color(0xffE5E5E5),
body: MyListBook(),
home: Scaffold(
appBar: AppBar(
toolbarHeight: 0,
elevation: 0,
backgroundColor: const Color(0xffE5E5E5),
systemOverlayStyle: const SystemUiOverlayStyle(
statusBarIconBrightness: Brightness.dark,
statusBarColor: Colors.transparent,
),
),
backgroundColor: const Color(0xffE5E5E5),
body: const MyListBook(),
),
);
}
Expand Down

0 comments on commit 8ea37b7

Please sign in to comment.