BusinessAddedSuccess
BusinessAddedSuccess screen design completed (09-screen)
This commit is contained in:
parent
83edbd27c4
commit
5dce57e079
BIN
openclosenew/assets/images/location.png
Normal file
BIN
openclosenew/assets/images/location.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 573 B |
BIN
openclosenew/assets/images/success.png
Normal file
BIN
openclosenew/assets/images/success.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
@ -1,5 +1,7 @@
|
|||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/widgets.dart';
|
import 'package:flutter/widgets.dart';
|
||||||
|
import 'package:openclosenew/businessaddedsuccess.dart';
|
||||||
|
|
||||||
class addbusiness extends StatefulWidget {
|
class addbusiness extends StatefulWidget {
|
||||||
addbusiness({Key? key}) : super(key: key);
|
addbusiness({Key? key}) : super(key: key);
|
||||||
@ -9,204 +11,335 @@ class addbusiness extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _addbusinessState extends State<addbusiness> {
|
class _addbusinessState extends State<addbusiness> {
|
||||||
late String valuChoose;
|
List<DropdownMenuItem<String>> listDrop = [];
|
||||||
List ListItem = ["item 1", "item 2", "item 3", "item 4", "item 5"];
|
String? selected = null;
|
||||||
|
void loadData() {
|
||||||
|
listDrop = [];
|
||||||
|
listDrop.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.1'),
|
||||||
|
value: 'val-1',
|
||||||
|
));
|
||||||
|
listDrop.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.2'),
|
||||||
|
value: 'val-2',
|
||||||
|
));
|
||||||
|
listDrop.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.3'),
|
||||||
|
value: 'val-3',
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
List<DropdownMenuItem<String>> listDrop1 = [];
|
||||||
|
String? selected1 = null;
|
||||||
|
void loadData1() {
|
||||||
|
listDrop1 = [];
|
||||||
|
listDrop1.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.1'),
|
||||||
|
value: 'val-1',
|
||||||
|
));
|
||||||
|
listDrop1.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.2'),
|
||||||
|
value: 'val-2',
|
||||||
|
));
|
||||||
|
listDrop1.add(new DropdownMenuItem(
|
||||||
|
child: new Text('Item No.3'),
|
||||||
|
value: 'val-3',
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
loadData();
|
||||||
|
loadData1();
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: Colors.white,
|
backgroundColor: Colors.white,
|
||||||
body: Column(
|
body: SingleChildScrollView(
|
||||||
children: [
|
reverse: true,
|
||||||
SizedBox(
|
child: Column(
|
||||||
height: 50,
|
children: [
|
||||||
),
|
SizedBox(
|
||||||
Padding(
|
height: 50,
|
||||||
padding: const EdgeInsets.only(left: 15, right: 24),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back, size: 24),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pop(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'Add Business',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 15,
|
|
||||||
color: Color(0xff3D3D3D),
|
|
||||||
fontFamily: 'assets/fonts/Manrope-Medium.ttf',
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
Padding(
|
||||||
Container(
|
padding: const EdgeInsets.only(left: 15, right: 24),
|
||||||
child: Column(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
Image.asset(
|
IconButton(
|
||||||
'assets/images/gallery-icon.png',
|
icon: Icon(Icons.arrow_back, size: 24),
|
||||||
),
|
onPressed: () {
|
||||||
SizedBox(
|
Navigator.pop(context);
|
||||||
height: 10,
|
},
|
||||||
),
|
),
|
||||||
Text(
|
SizedBox(
|
||||||
'Uploading Logo',
|
width: 20,
|
||||||
style: TextStyle(
|
),
|
||||||
color: Colors.grey,
|
Text(
|
||||||
fontSize: 14,
|
'Add Business',
|
||||||
fontWeight: FontWeight.w400,
|
style: TextStyle(
|
||||||
fontFamily: 'Manrope'),
|
fontSize: 15,
|
||||||
),
|
color: Color(0xff3D3D3D),
|
||||||
],
|
fontFamily: 'assets/fonts/Manrope-Medium.ttf',
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
decoration: BoxDecoration(
|
Container(
|
||||||
shape: BoxShape.circle,
|
child: Column(
|
||||||
color: Colors.black,
|
children: [
|
||||||
|
Image.asset(
|
||||||
|
'assets/images/gallery-icon.png',
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'Uploading Logo',
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.grey,
|
||||||
|
fontSize: 14,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
fontFamily: 'Manrope'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
shape: BoxShape.circle,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
margin: EdgeInsets.all(15),
|
||||||
|
padding: EdgeInsets.all(30),
|
||||||
),
|
),
|
||||||
margin: EdgeInsets.all(15),
|
Container(
|
||||||
padding: EdgeInsets.all(30),
|
child: Column(
|
||||||
),
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Container(
|
children: [
|
||||||
child: Column(
|
Padding(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
padding: const EdgeInsets.only(
|
||||||
children: [
|
left: 24,
|
||||||
Padding(
|
top: 10,
|
||||||
padding: const EdgeInsets.only(
|
right: 24,
|
||||||
left: 24,
|
|
||||||
top: 10,
|
|
||||||
right: 24,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
'Business Name',
|
|
||||||
style: TextStyle(
|
|
||||||
fontFamily: "Manrope",
|
|
||||||
fontSize: 14,
|
|
||||||
color: Color(0xff333333),
|
|
||||||
),
|
),
|
||||||
),
|
child: Text(
|
||||||
),
|
'Business Name',
|
||||||
Padding(
|
style: TextStyle(
|
||||||
padding: const EdgeInsets.only(left: 24, right: 24, top: 10),
|
fontFamily: "Manrope",
|
||||||
child: TextField(
|
fontSize: 14,
|
||||||
decoration: InputDecoration(
|
color: Color(0xff333333),
|
||||||
border: InputBorder.none,
|
|
||||||
hintText: 'Type here...',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(
|
|
||||||
left: 24,
|
|
||||||
top: 10,
|
|
||||||
right: 24,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
'Contact Number',
|
|
||||||
style: TextStyle(
|
|
||||||
fontFamily: "Manrope",
|
|
||||||
fontSize: 14,
|
|
||||||
color: Color(0xff333333),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(left: 24, right: 24, top: 10),
|
|
||||||
child: TextField(
|
|
||||||
decoration: InputDecoration(
|
|
||||||
border: InputBorder.none,
|
|
||||||
hintText: 'Type here...',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(
|
|
||||||
left: 24,
|
|
||||||
top: 10,
|
|
||||||
right: 24,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
'Tell about your business...',
|
|
||||||
style: TextStyle(
|
|
||||||
fontFamily: "Manrope",
|
|
||||||
fontSize: 14,
|
|
||||||
color: Color(0xff333333),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(left: 24, right: 24, top: 10),
|
|
||||||
child: TextField(
|
|
||||||
maxLines: 5,
|
|
||||||
keyboardType: TextInputType.multiline,
|
|
||||||
decoration: InputDecoration(
|
|
||||||
border: InputBorder.none,
|
|
||||||
hintText: 'Type here...',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SizedBox(
|
|
||||||
width: 28,
|
|
||||||
),
|
|
||||||
Text('Industry'),
|
|
||||||
SizedBox(
|
|
||||||
width: 120,
|
|
||||||
),
|
|
||||||
Text('Category'),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SizedBox(
|
|
||||||
width: 28,
|
|
||||||
),
|
|
||||||
DropdownButton(
|
|
||||||
hint: Text(
|
|
||||||
'Food',
|
|
||||||
style: TextStyle(color: Color(0xff3D3D3D)),
|
|
||||||
),
|
),
|
||||||
iconSize: 14,
|
|
||||||
icon: Icon(Icons.keyboard_arrow_down, size: 24),
|
|
||||||
items: [
|
|
||||||
DropdownMenuItem<String>(
|
|
||||||
value: "1",
|
|
||||||
child: Center(
|
|
||||||
child: Text("one"),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
onChanged: (_value) => {
|
|
||||||
print(_value.toString()),
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
Spacer(),
|
),
|
||||||
DropdownButton(
|
Padding(
|
||||||
items: [
|
padding:
|
||||||
DropdownMenuItem<String>(
|
const EdgeInsets.only(left: 24, right: 24, top: 10),
|
||||||
value: "1",
|
child: TextField(
|
||||||
child: Center(
|
decoration: InputDecoration(
|
||||||
child: Text("one"),
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 5, bottom: 5),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(5),
|
||||||
),
|
),
|
||||||
)
|
),
|
||||||
],
|
hintText: 'Type here...',
|
||||||
onChanged: (_value) => {
|
),
|
||||||
print(_value.toString()),
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
],
|
),
|
||||||
),
|
Padding(
|
||||||
],
|
padding: const EdgeInsets.only(
|
||||||
|
left: 24,
|
||||||
|
top: 10,
|
||||||
|
right: 24,
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
'Contact Number',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: "Manrope",
|
||||||
|
fontSize: 14,
|
||||||
|
color: Color(0xff333333),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.only(left: 24, right: 24, top: 10),
|
||||||
|
child: TextField(
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 5, bottom: 5),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(5),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
hintText: 'Type here...',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.only(left: 24, top: 10, right: 24),
|
||||||
|
child: Text(
|
||||||
|
'Tell about your business...',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: "Manrope",
|
||||||
|
fontSize: 14,
|
||||||
|
color: Color(0xff333333),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.only(left: 24, right: 24, top: 10),
|
||||||
|
child: TextField(
|
||||||
|
maxLines: 4,
|
||||||
|
keyboardType: TextInputType.multiline,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 5, bottom: 5),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(5),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
hintText: 'Type here...',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 10),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
width: 28,
|
||||||
|
),
|
||||||
|
Text('Industry'),
|
||||||
|
SizedBox(
|
||||||
|
width: 120,
|
||||||
|
),
|
||||||
|
Text('Category'),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 5, right: 24),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
width: 28,
|
||||||
|
),
|
||||||
|
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(
|
||||||
|
value: selected,
|
||||||
|
items: listDrop,
|
||||||
|
icon: Icon(Icons.keyboard_arrow_down, size: 24),
|
||||||
|
hint: new Text('Choose...'),
|
||||||
|
onChanged: (value) {
|
||||||
|
selected = value as String?;
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
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(
|
||||||
|
value: selected1,
|
||||||
|
items: listDrop1,
|
||||||
|
icon: Icon(Icons.keyboard_arrow_down, size: 24),
|
||||||
|
hint: new Text('Choose...'),
|
||||||
|
onChanged: (value) {
|
||||||
|
selected1 = value as String?;
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 5,
|
||||||
|
),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 28),
|
||||||
|
child: Text(
|
||||||
|
'Address',
|
||||||
|
style: TextStyle(
|
||||||
|
fontFamily: "Manrope",
|
||||||
|
fontSize: 14,
|
||||||
|
color: Color(0xff333333),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 5,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 28, right: 24),
|
||||||
|
child: TextField(
|
||||||
|
decoration: InputDecoration(
|
||||||
|
contentPadding:
|
||||||
|
EdgeInsets.only(left: 10, top: 5, bottom: 5),
|
||||||
|
border: OutlineInputBorder(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(5),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
hintText: 'Type here...',
|
||||||
|
suffixIcon:
|
||||||
|
Image.asset('assets/images/location.png'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
MaterialButton(
|
||||||
|
height: 50,
|
||||||
|
minWidth: double.infinity,
|
||||||
|
color: Color(0xff12C193),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (_) => businessaddedsuccess()));
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'Save',
|
||||||
|
style: TextStyle(color: Colors.white, fontSize: 15),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
64
openclosenew/lib/businessaddedsuccess.dart
Normal file
64
openclosenew/lib/businessaddedsuccess.dart
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:openclosenew/07_addbusiness.dart';
|
||||||
|
|
||||||
|
class businessaddedsuccess extends StatelessWidget {
|
||||||
|
const businessaddedsuccess({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold(
|
||||||
|
body: SafeArea(
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.only(left: 24, right: 24, bottom: 24),
|
||||||
|
child: Center(
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Spacer(),
|
||||||
|
Image.asset(
|
||||||
|
'assets/images/success.png',
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 24,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"Yay!",
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 24,
|
||||||
|
color: Color(0xff12C193),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 24,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"Your business added successfully",
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 15,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Spacer(),
|
||||||
|
MaterialButton(
|
||||||
|
height: 50,
|
||||||
|
minWidth: double.infinity,
|
||||||
|
color: Color(0xff12C193),
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.circular(4)),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.push(context,
|
||||||
|
MaterialPageRoute(builder: (_) => addbusiness()));
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'Let’s Explore',
|
||||||
|
style: TextStyle(color: Colors.white, fontSize: 15),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -131,7 +131,7 @@ packages:
|
|||||||
name: flutter_plugin_android_lifecycle
|
name: flutter_plugin_android_lifecycle
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.5"
|
version: "2.0.6"
|
||||||
flutter_test:
|
flutter_test:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description: flutter
|
description: flutter
|
||||||
@ -178,33 +178,33 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.3"
|
version: "3.1.3"
|
||||||
image_picker:
|
image_picker:
|
||||||
dependency: "direct main"
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: image_picker
|
name: image_picker
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.5"
|
version: "0.8.5+1"
|
||||||
image_picker_android:
|
image_picker_android:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: image_picker_android
|
name: image_picker_android
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.4+11"
|
version: "0.8.4+12"
|
||||||
image_picker_for_web:
|
image_picker_for_web:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: image_picker_for_web
|
name: image_picker_for_web
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.6"
|
version: "2.1.7"
|
||||||
image_picker_ios:
|
image_picker_ios:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: image_picker_ios
|
name: image_picker_ios
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.5"
|
version: "0.8.5+1"
|
||||||
image_picker_platform_interface:
|
image_picker_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -427,6 +427,13 @@ packages:
|
|||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.99"
|
version: "0.0.99"
|
||||||
|
snippet_coder_utils:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: snippet_coder_utils
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.12"
|
||||||
source_span:
|
source_span:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -29,6 +29,7 @@ environment:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
snippet_coder_utils: ^1.0.8
|
||||||
|
|
||||||
|
|
||||||
# The following adds the Cupertino Icons fonts to your application.
|
# The following adds the Cupertino Icons fonts to your application.
|
||||||
@ -37,7 +38,8 @@ dependencies:
|
|||||||
shared_preferences: ^2.0.11
|
shared_preferences: ^2.0.11
|
||||||
intl_phone_number_input: ^0.7.0+2
|
intl_phone_number_input: ^0.7.0+2
|
||||||
get: ^4.5.1
|
get: ^4.5.1
|
||||||
image_picker: ^0.8.5
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
|
Loading…
Reference in New Issue
Block a user