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
3a0ee540
Commit
3a0ee540
authored
Jul 14, 2020
by
Mobile : Ball (Apprentice)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
04853921
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
lib/ui/favorite/favorite.dart
+4
-4
lib/ui/payment/mycart.dart
+10
-3
No files found.
lib/ui/favorite/favorite.dart
View file @
3a0ee540
...
...
@@ -163,8 +163,8 @@ class _FavoriteState extends State<Favorite> {
children:
<
Widget
>[
Image
.
asset
(
'assets/images/clock.png'
,
height:
20
,
width:
20
,
height:
SizeConfig
.
getHeight
(
20
)
,
width:
SizeConfig
.
getWidth
(
20
)
,
),
SizedBox
(
width:
SizeConfig
.
getWidth
(
5
),
...
...
@@ -305,8 +305,8 @@ class _FavoriteState extends State<Favorite> {
children:
<
Widget
>[
Image
.
asset
(
'assets/images/clock.png'
,
height:
20
,
width:
20
,
height:
SizeConfig
.
getHeight
(
20
)
,
width:
SizeConfig
.
getWidth
(
20
)
,
),
SizedBox
(
width:
SizeConfig
.
getWidth
(
5
),
...
...
lib/ui/payment/mycart.dart
View file @
3a0ee540
...
...
@@ -35,7 +35,10 @@ class _MyCartState extends State<MyCart> {
color:
Colors
.
white
,
),
Padding
(
padding:
const
EdgeInsets
.
only
(
left:
7
,
right:
12
),
padding:
const
EdgeInsets
.
only
(
left:
7
,
right:
12
,
),
child:
Text
(
'โค้ดส่วนลด'
,
style:
TextStyle
(
...
...
@@ -461,7 +464,9 @@ class _MyCartState extends State<MyCart> {
height:
SizeConfig
.
getPadding
(
20
),
child:
RaisedButton
(
child:
Text
(
'-'
),
padding:
EdgeInsets
.
only
(
right:
SizeConfig
.
getPadding
(
0
),),
padding:
EdgeInsets
.
only
(
right:
SizeConfig
.
getPadding
(
0
),
),
onPressed:
()
{
setState
(()
{
a
=
a
-
1
;
...
...
@@ -478,7 +483,9 @@ class _MyCartState extends State<MyCart> {
height:
SizeConfig
.
getPadding
(
20
),
child:
RaisedButton
(
child:
Text
(
'+'
),
padding:
EdgeInsets
.
only
(
right:
SizeConfig
.
getPadding
(
0
),),
padding:
EdgeInsets
.
only
(
right:
SizeConfig
.
getPadding
(
0
),
),
onPressed:
()
{
setState
(()
{
a
=
a
+
1
;
...
...
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