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
561025d1
Commit
561025d1
authored
Aug 25, 2020
by
Mobile : Art
Browse files
Options
Browse Files
Download
Plain Diff
update
parents
542a485f
71cdcff4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
17 deletions
+15
-17
lib/ui/favorite/favorite.dart
+9
-15
lib/ui/home/home.dart
+2
-2
lib/ui/shop/shop_list_detail.dart
+2
-0
lib/ui/shop/shop_main.dart
+2
-0
No files found.
lib/ui/favorite/favorite.dart
View file @
561025d1
...
...
@@ -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 @
561025d1
...
...
@@ -265,7 +265,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
),
...
...
@@ -291,7 +291,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
),
...
...
lib/ui/shop/shop_list_detail.dart
View file @
561025d1
...
...
@@ -7,6 +7,7 @@ import 'package:feelverapp/ui/payment/mycart.dart';
import
'package:feelverapp/ui/review_shop/review_shop_page.dart'
;
import
'package:feelverapp/ui/shop/shop_main.dart'
;
import
'package:feelverapp/ui/shop/shop_reviews.dart'
;
import
'package:feelverapp/ui/shop/shop_main.dart'
;
import
'package:feelverapp/ui/shop/shoplistdetail_presenter.dart'
;
import
'package:feelverapp/util/SizeConfig.dart'
;
import
'package:flutter/cupertino.dart'
;
...
...
@@ -384,6 +385,7 @@ class _ShopListDetailState extends State<ShopListDetail> {
),
Row
(
children:
[
Icon
(
Icons
.
timer
,
color:
Colors
.
pinkAccent
,
size:
20
,
...
...
lib/ui/shop/shop_main.dart
View file @
561025d1
...
...
@@ -9,12 +9,14 @@ import 'package:flutter/material.dart';
import
'dart:math'
;
class
MainShop
extends
StatefulWidget
{
int
getid
;
int
vendor_id
;
int
store_id
;
MainShop
({
Key
key
,
this
.
title
,
this
.
getid
,
this
.
vendor_id
,
this
.
store_id
})
:
super
(
key:
key
);
final
String
title
;
...
...
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