Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
feelver
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2F-ART
feelver
Commits
71cdcff4
Commit
71cdcff4
authored
Aug 25, 2020
by
Mobile : Jetrin Phuekkaew (N'new)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
19e72f08
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
18 deletions
+12
-18
lib/main.dart
+1
-1
lib/ui/favorite/favorite.dart
+9
-15
lib/ui/home/home.dart
+2
-2
No files found.
lib/main.dart
View file @
71cdcff4
...
...
@@ -34,7 +34,7 @@ class MyApp extends StatelessWidget {
),
home:
MainShop
()
home:
SplashScreenPage
()
...
...
lib/ui/favorite/favorite.dart
View file @
71cdcff4
...
...
@@ -223,7 +223,7 @@ class _FavoriteState extends State<Favorite> {
children:
<
Widget
>[
Container
(
color:
Color
.
fromRGBO
(
69
,
85
,
79
,
1
),
height:
SizeConfig
.
getHeight
(
20
0
),
height:
SizeConfig
.
getHeight
(
18
0
),
width:
MediaQuery
.
of
(
context
).
size
.
width
,
),
Positioned
(
...
...
@@ -243,21 +243,15 @@ class _FavoriteState extends State<Favorite> {
left:
SizeConfig
.
getPadding
(
16
),
child:
Container
(
child:
GestureDetector
(
onTap:
()
{
showDialog
(
context:
context
,
builder:
(
BuildContext
context
)
{
return
NavDrawer
();
onTap:
()
{
Navigator
.
pop
(
context
);
},
);
},
child:
Image
.
asset
(
'assets/images/ic_menu.png'
,
height:
SizeConfig
.
getWidth
(
24
),
width:
SizeConfig
.
getWidth
(
30
),
fit:
BoxFit
.
cover
,
),
),
child:
Icon
(
Icons
.
keyboard_arrow_left
,
color:
Colors
.
white
,
size:
SizeConfig
.
getFontSize
(
24
),
),
),
),
),
],
...
...
lib/ui/home/home.dart
View file @
71cdcff4
...
...
@@ -259,7 +259,7 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
child:
ClipRRect
(
borderRadius:
BorderRadius
.
all
(
Radius
.
circular
(
SizeConfig
.
getWidth
(
56
))),
child:
Image
.
network
(
child:
presenter
.
getmodel
.
result
[
0
].
image
==
null
?
Container
():
Image
.
network
(
presenter
.
getmodel
.
result
[
0
].
image
,
fit:
BoxFit
.
contain
,
width:
SizeConfig
.
getWidth
(
30
),
...
...
@@ -285,7 +285,7 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
child:
ClipRRect
(
borderRadius:
BorderRadius
.
all
(
Radius
.
circular
(
SizeConfig
.
getWidth
(
56
))),
child:
Image
.
network
(
child:
presenter
.
getmodel
.
result
[
0
].
image
==
null
?
Container
():
Image
.
network
(
presenter
.
getmodel
.
result
[
0
].
image
,
fit:
BoxFit
.
contain
,
width:
SizeConfig
.
getWidth
(
30
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment