addprodectfrom design completed
This commit is contained in:
parent
6b7634e47f
commit
da78bce79e
@ -37,90 +37,390 @@ class _addproductfromState extends State<addproductfrom> {
|
|||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: White,
|
backgroundColor: White,
|
||||||
body: SafeArea(
|
body: SafeArea(
|
||||||
child: Column(
|
child: SingleChildScrollView(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
child: Column(
|
||||||
children: [
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Row(
|
children: [
|
||||||
children: [
|
Row(
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back, size: 24),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'Add Food Item',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: HeadText,
|
|
||||||
color: DarkGray,
|
|
||||||
fontFamily: Font,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(top: 20, left: 15, right: 15),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
IconButton(
|
||||||
child: MaterialButton(
|
icon: Icon(Icons.arrow_back, size: 24),
|
||||||
color: (status == true) ? White : primaryColor,
|
onPressed: () {
|
||||||
height: 50,
|
Navigator.pop(context);
|
||||||
minWidth: double.infinity,
|
},
|
||||||
shape: RoundedRectangleBorder(
|
),
|
||||||
borderRadius: BorderRadius.only(
|
SizedBox(
|
||||||
topLeft: Radius.circular(4),
|
width: 20,
|
||||||
bottomLeft: Radius.circular(4),
|
),
|
||||||
|
Text(
|
||||||
|
'Add Food Item',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
fontFamily: Font,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 20, left: 15, right: 15),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: MaterialButton(
|
||||||
|
color: (status == true) ? White : primaryColor,
|
||||||
|
height: 40,
|
||||||
|
minWidth: double.infinity,
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.only(
|
||||||
|
topLeft: Radius.circular(4),
|
||||||
|
bottomLeft: Radius.circular(4),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
setState(() {
|
||||||
|
status = !status;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
"Veg",
|
||||||
|
style: TextStyle(
|
||||||
|
color: (status == true) ? Gray : White,
|
||||||
|
fontSize: HeadText,
|
||||||
|
fontFamily: Font,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onPressed: () {
|
),
|
||||||
setState(() {
|
Expanded(
|
||||||
status = !status;
|
child: MaterialButton(
|
||||||
});
|
color: (status == true) ? primaryColor : White,
|
||||||
},
|
height: 40,
|
||||||
child: Text(
|
minWidth: double.infinity,
|
||||||
"Veg",
|
shape: RoundedRectangleBorder(
|
||||||
style: TextStyle(
|
borderRadius: BorderRadius.only(
|
||||||
color: (status == true) ? Gray : White,
|
topRight: Radius.circular(4),
|
||||||
fontSize: HeadText,
|
bottomRight: Radius.circular(4),
|
||||||
fontFamily: Font,
|
),
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
setState(() {
|
||||||
|
status = !status;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
"Non Veg",
|
||||||
|
style: TextStyle(
|
||||||
|
color: (status == true) ? White : Gray,
|
||||||
|
fontSize: HeadText,
|
||||||
|
fontFamily: Font,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25, top: 15, right: 20),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'Item Name',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
TextField(
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 10, bottom: 10),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(5)),
|
||||||
|
hintText: 'Type here...',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Category',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25, right: 20),
|
||||||
|
child: Expanded(
|
||||||
|
child: InputDecorator(
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding: EdgeInsets.only(
|
||||||
|
left: 10, top: 1, bottom: 1, right: 5),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius:
|
||||||
|
BorderRadius.all(Radius.circular(5)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: DropdownButtonHideUnderline(
|
||||||
|
child: new DropdownButton(
|
||||||
|
borderRadius: BorderRadius.circular(5),
|
||||||
|
value: selected,
|
||||||
|
items: listDrop,
|
||||||
|
icon: Icon(Icons.keyboard_arrow_down, size: 24),
|
||||||
|
hint: new Text('Choose...'),
|
||||||
|
onChanged: (value) {
|
||||||
|
selected = value as String?;
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25),
|
||||||
|
child: Text(
|
||||||
|
'Price',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25, right: 20),
|
||||||
|
child: TextField(
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
prefixIcon: Image.asset(
|
||||||
|
'assets/images/dollor.png',
|
||||||
|
width: 10,
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 10, bottom: 10),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(5),
|
||||||
|
),
|
||||||
|
hintText: '00.00',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25),
|
||||||
|
child: Text(
|
||||||
|
'Description',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
TextField(
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 10, bottom: 10),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.circular(5)),
|
||||||
|
hintText: 'Type here...',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25),
|
||||||
|
child: Text(
|
||||||
|
'Upload photo',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
fontSize: HeadText,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
InkWell(
|
||||||
|
onTap: () {
|
||||||
|
showModalBottomSheet<void>(
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
height: 200,
|
||||||
|
color: Colors.white,
|
||||||
|
child: Center(
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
children: <Widget>[
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"Choose You Image",
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
SizedBox(height: 30),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {},
|
||||||
|
icon: Icon(Icons.camera),
|
||||||
|
iconSize: 30,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Camera',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15,
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 50,
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {},
|
||||||
|
icon: Icon(Icons.image_rounded),
|
||||||
|
iconSize: 30,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Gallery',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15,
|
||||||
|
fontFamily: Font,
|
||||||
|
fontStyle: FontStyle.normal,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
color: DarkGray,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 25, top: 5),
|
||||||
|
child: DottedBorder(
|
||||||
|
padding: EdgeInsets.all(45),
|
||||||
|
dashPattern: [4, 4, 4, 4],
|
||||||
|
radius: Radius.circular(10),
|
||||||
|
color: primaryColor,
|
||||||
|
child: Image.asset(
|
||||||
|
'assets/images/insert_logo.png',
|
||||||
|
width: 30,
|
||||||
|
height: 30,
|
||||||
|
color: primaryColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 55,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 24, bottom: 24),
|
||||||
|
child: MaterialButton(
|
||||||
|
height: 50,
|
||||||
|
minWidth: double.infinity,
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.circular(4)),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
"Cancel",
|
||||||
|
style: TextStyle(
|
||||||
|
color: Gray,
|
||||||
|
fontFamily: Font,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: MaterialButton(
|
child: Padding(
|
||||||
color: (status == true) ? primaryColor : White,
|
padding: const EdgeInsets.only(right: 24, bottom: 24),
|
||||||
height: 50,
|
child: MaterialButton(
|
||||||
minWidth: double.infinity,
|
height: 50,
|
||||||
shape: RoundedRectangleBorder(
|
minWidth: double.infinity,
|
||||||
borderRadius: BorderRadius.only(
|
color: primaryColor,
|
||||||
topRight: Radius.circular(4),
|
shape: RoundedRectangleBorder(
|
||||||
bottomRight: Radius.circular(4),
|
borderRadius: BorderRadius.circular(4)),
|
||||||
),
|
onPressed: () {
|
||||||
),
|
Navigator.push(
|
||||||
onPressed: () {
|
context,
|
||||||
setState(() {
|
MaterialPageRoute(
|
||||||
status = !status;
|
builder: (_) => businessdetail()));
|
||||||
});
|
},
|
||||||
},
|
child: Text(
|
||||||
child: Text(
|
'Save',
|
||||||
"Non Veg",
|
style: TextStyle(
|
||||||
style: TextStyle(
|
color: White,
|
||||||
color: (status == true) ? White : Gray,
|
fontSize: HeadText,
|
||||||
fontSize: HeadText,
|
fontFamily: Font,
|
||||||
fontFamily: Font,
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user