Commit 1d99460f by Nuttee

update appbar and drawer

parent a5ab8a4e
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
buildscript { buildscript {
ext.kotlin_version = '>=1.3.50 <1.6.10' ext.kotlin_version = '1.3.50'
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
......
This source diff could not be displayed because it is too large. You can view the blob instead.
#Mon Mar 14 14:25:27 ICT 2022 #Tue Mar 15 09:54:53 ICT 2022
base.0=D\:\\2fellows\\NBT_APP-1\\build\\app\\intermediates\\dex\\debug\\mergeDexDebug\\classes.dex base.0=D\:\\2fellows\\NBT_APP-1\\build\\app\\intermediates\\dex\\debug\\mergeDexDebug\\classes.dex
renamed.0=classes.dex renamed.0=classes.dex
path.0=classes.dex path.0=classes.dex
f549cfe37566a20f8a97a17e6960f1ae89c654fc 5fbc4e59c9ec680eccf75ba3da9be7f8cc294e74
\ No newline at end of file \ No newline at end of file
...@@ -4,6 +4,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; ...@@ -4,6 +4,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:carousel_slider/carousel_slider.dart'; import 'package:carousel_slider/carousel_slider.dart';
import 'package:nbt_app/components/appbar_logo.dart'; import 'package:nbt_app/components/appbar_logo.dart';
import 'package:nbt_app/components/bottombar.dart'; import 'package:nbt_app/components/bottombar.dart';
import 'package:nbt_app/components/drawer.dart';
import 'package:nbt_app/screen/news/news_page.dart'; import 'package:nbt_app/screen/news/news_page.dart';
import 'package:smooth_page_indicator/smooth_page_indicator.dart'; import 'package:smooth_page_indicator/smooth_page_indicator.dart';
...@@ -77,10 +78,9 @@ class _HomePageState extends State<HomePage> { ...@@ -77,10 +78,9 @@ class _HomePageState extends State<HomePage> {
return Scaffold( return Scaffold(
// backgroundColor: Color.fromRGBO(77, 32, 126, 1), // backgroundColor: Color.fromRGBO(77, 32, 126, 1),
appBar: PreferredSize( appBar: PreferredSize(preferredSize: Size.fromHeight(100),
preferredSize: Size.fromHeight(80), child: AppBarLogo()),
child: AppBarLogo() drawer: NBTDrawer(),
),
body: Column( body: Column(
children: [ children: [
Stack(alignment: Alignment.topCenter, children: [ Stack(alignment: Alignment.topCenter, children: [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment