Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Apus Drones
apus-drones-frontend
Commits
1fb3e7e1
Commit
1fb3e7e1
authored
3 years ago
by
Aléxia Dorneles
Browse files
Options
Download
Email Patches
Plain Diff
Posicionar botão no fim da página
parent
3e97241f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/screens/CartScreen.dart
+6
-6
lib/screens/CartScreen.dart
with
6 additions
and
6 deletions
+6
-6
lib/screens/CartScreen.dart
View file @
1fb3e7e1
...
...
@@ -2,7 +2,6 @@ import 'package:apus_drones_mobile/constants/UserType.dart';
import
'package:apus_drones_mobile/screens/Appbar.dart'
;
import
'package:apus_drones_mobile/widgets/BotNavBar.dart'
;
import
'package:apus_drones_mobile/widgets/Fee.dart'
;
import
'package:apus_drones_mobile/widgets/Header.dart'
;
import
'package:flutter/material.dart'
;
class
CartScreen
extends
StatefulWidget
{
...
...
@@ -20,15 +19,16 @@ class _CartPageState extends State<CartScreen> {
appBar:
Appbar
(
title:
'Carrinho'
),
resizeToAvoidBottomInset:
false
,
backgroundColor:
Colors
.
grey
.
shade100
,
body:
Container
(
padding:
EdgeInsets
.
only
(
top:
15
),
body:
SafeArea
(
//
padding: EdgeInsets.only(top: 15),
child:
Column
(
children:
[
Expanded
(
child:
ListView
(
children:
<
Widget
>[
createCartList
()
,
footer
(
context
)
],
children:
<
Widget
>[
createCartList
()],
),
)
),
footer
(
context
)
],
),
),
...
...
@@ -40,7 +40,7 @@ class _CartPageState extends State<CartScreen> {
footer
(
BuildContext
context
)
{
return
Container
(
height:
475
,
padding:
EdgeInsets
.
symmetric
(
vertical:
30
)
,
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
center
,
mainAxisAlignment:
MainAxisAlignment
.
end
,
...
...
This diff is collapsed.
Click to expand it.
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