Delte button + create wool from modal
This commit is contained in:
parent
aa25288c3e
commit
732042255a
8 changed files with 52 additions and 29 deletions
|
|
@ -9,7 +9,7 @@ class Woolcard extends StatelessWidget {
|
|||
int id;
|
||||
String manufacture;
|
||||
String title;
|
||||
String color;
|
||||
Color color;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return CustomCard(Row(
|
||||
|
|
@ -21,7 +21,7 @@ class Woolcard extends StatelessWidget {
|
|||
Container(
|
||||
height: 70,
|
||||
width: 30,
|
||||
color: HexColor(color),
|
||||
color: color,
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(10.0),
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ class ModalWrapper extends StatelessWidget {
|
|||
width: 750,
|
||||
height: MediaQuery.of(context).size.height - 100,
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 25, vertical: 10),
|
||||
padding: EdgeInsets.symmetric(horizontal: 25, vertical: 0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
|
|
|
|||
Reference in a new issue