Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Team 37
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Om Akbari (nzc174)
Team 37
Commits
dae84bbb
Commit
dae84bbb
authored
3 years ago
by
Aayush
Browse files
Options
Downloads
Patches
Plain Diff
commit all
parent
b6c61e5d
No related branches found
Branches containing commit
No related tags found
1 merge request
!3
Main product
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/screens/home_screens/drawer_side.dart
+56
-39
56 additions, 39 deletions
lib/screens/home_screens/drawer_side.dart
lib/screens/home_screens/my_profile/my_profile.dart
+23
-0
23 additions, 0 deletions
lib/screens/home_screens/my_profile/my_profile.dart
with
79 additions
and
39 deletions
lib/screens/home_screens/drawer_side.dart
+
56
−
39
View file @
dae84bbb
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/material.dart'
;
import
'package:food_app/screens/home_screens/my_profile/my_profile.dart'
;
import
'../../config/colors.dart'
;
class
DrawerSide
extends
StatelessWidget
{
Widget
listTile
({
IconData
iconData
,
String
title
})
{
class
DrawerSide
extends
StatelessWidget
{
Widget
listTile
({
IconData
iconData
,
String
title
,
Function
onTap
})
{
return
ListTile
(
onTap:
onTap
,
leading:
Icon
(
iconData
,
size:
32
,
...
...
@@ -22,7 +25,7 @@ class DrawerSide extends StatelessWidget{
child:
Container
(
width:
100
,
color:
primaryColor
,
child:
ListView
(
child:
ListView
(
children:
[
DrawerHeader
(
child:
Row
(
...
...
@@ -33,8 +36,7 @@ class DrawerSide extends StatelessWidget{
child:
CircleAvatar
(
backgroundColor:
Colors
.
yellow
,
backgroundImage:
NetworkImage
(
"https://s3.envato.com/files/328957910/vegi_thumb.png"
),
"https://s3.envato.com/files/328957910/vegi_thumb.png"
),
radius:
40
,
),
),
...
...
@@ -67,55 +69,70 @@ class DrawerSide extends StatelessWidget{
],
),
),
listTile
(
iconData:
Icons
.
home_outlined
,
title:
"Home"
),
listTile
(
iconData:
Icons
.
home_outlined
,
title:
"Home"
,
),
listTile
(
iconData:
Icons
.
shop_outlined
,
title:
"Review Cart"
),
listTile
(
iconData:
Icons
.
person_outline
,
title:
"My Profile"
),
listTile
(
iconData:
Icons
.
notifications_outlined
,
title:
"Notification"
),
listTile
(
iconData:
Icons
.
person_outlined
,
title:
"My Profile"
,
onTap:
()
{
Navigator
.
of
(
context
)
.
push
(
MaterialPageRoute
(
builder:
(
context
)
=
>
MyProfile
(),
),
);
}),
listTile
(
iconData:
Icons
.
notifications_outlined
,
title:
"Notification"
),
listTile
(
iconData:
Icons
.
star_outline
,
title:
"Rating & Review"
),
listTile
(
iconData:
Icons
.
favorite_outline
,
title:
"Wishlist"
),
listTile
(
iconData:
Icons
.
copy_outlined
,
title:
"Complaints"
),
listTile
(
iconData:
Icons
.
format_quote_outlined
,
title:
"FAQs"
),
Container
(
height:
350
,
padding:
EdgeInsets
.
symmetric
(
horizontal:
20
),
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
children:
[
Text
(
"Contact Support"
),
SizedBox
(
height:
10
,
),
Row
(
height:
350
,
padding:
EdgeInsets
.
symmetric
(
horizontal:
20
),
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
children:
[
Text
(
"Contact Support"
),
SizedBox
(
height:
10
,
),
Row
(
children:
[
Text
(
"Call us:"
),
SizedBox
(
width:
10
,
),
Text
(
"+1(306)638-250"
)
],
),
SizedBox
(
height:
5
,
),
SingleChildScrollView
(
scrollDirection:
Axis
.
horizontal
,
child:
Row
(
children:
[
Text
(
"
Cal
l us:"
),
Text
(
"
Mai
l us:"
),
SizedBox
(
width:
10
,
),
Text
(
"+1(306)638-250"
)
Text
(
"abc@contoso.com"
,
overflow:
TextOverflow
.
ellipsis
,
),
],
),
SizedBox
(
height:
5
,
),
SingleChildScrollView
(
scrollDirection:
Axis
.
horizontal
,
child:
Row
(
children:
[
Text
(
"Mail us:"
),
SizedBox
(
width:
10
,
),
Text
(
"abc@contoso.com"
,
overflow:
TextOverflow
.
ellipsis
,
),
],
),
),
],
),
),
],
),
),
],
),
),
);
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
lib/screens/home_screens/my_profile/my_profile.dart
0 → 100644
+
23
−
0
View file @
dae84bbb
import
'package:flutter/material.dart'
;
import
'package:food_app/config/colors.dart'
;
import
'package:food_app/screens/home_screens/drawer_side.dart'
;
class
MyProfile
extends
StatelessWidget
{
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
backgroundColor:
primaryColor
,
appBar:
AppBar
(
elevation:
0.0
,
title:
Text
(
"My Profile"
,
style:
TextStyle
(
fontSize:
18
,
color:
textColor
,
)
)
),
drawer:
DrawerSide
(),
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment