-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage picker
322 lines (307 loc) · 8.53 KB
/
image picker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:image_picker/image_picker.dart';
class Catelogue extends StatefulWidget {
const Catelogue({Key? key}) : super(key: key);
@override
State<Catelogue> createState() => _CatelogueState();
}
class _CatelogueState extends State<Catelogue> {
late File imageFile;
File? _proImage;
File? _proImages;
List<TextEditingController> _controllers = [];
List<TextField> _fields = [];
@override
void dispose() {
for (final controller in _controllers) {
controller.dispose();
}
super.dispose();
}
Widget _addTile() {
return Padding(
padding: const EdgeInsets.only(top: 30,left: 350),
child: ListTile(
title: Icon(Icons.add),
onTap: () {
final controller = TextEditingController();
final field = TextField(
controller: controller,
decoration: InputDecoration(
hintText: "Products Details${_controllers.length + 1}",
hintStyle: TextStyle(fontWeight: FontWeight.w600,
fontSize: 14,color: Colors.black)
),
);
setState(() {
_controllers.add(controller);
_fields.add(field);
});
},
),
);
}
@override
Widget build(BuildContext context) {
MediaQuery.of(context).size.height;
MediaQuery.of(context).size.width;
return SafeArea(
child: Scaffold(
resizeToAvoidBottomInset: false,
body: Column(
children: [
Boxcontainer(),
Type(hinttext: "Item Name"),
Type(hinttext: "Price"),
Type(hinttext: "Description"),
Type(hinttext: "Product Details"),
_addTile(),
Expanded(child:_listView() ),
],
)
),
);
}
Widget Boxcontainer(){
return Center(
child: Padding(
padding: EdgeInsets.only(top: 20),
child: InkWell(
onTap: (){
proPickImage();
},
child: Container(
height: MediaQuery.of(context).size.height*0.27,
width: MediaQuery.of(context).size.width*0.91,
decoration: BoxDecoration(
// image: DecorationImage(
// image:imageFile ==null? Image.memory(_proImage,)
// FileImage(_proImage!),
//
// ),
borderRadius: BorderRadius.circular(20),
color: Colors.cyan.shade300,
),
child:_proImage !=null?Image(image: FileImage(_proImage!),fit: BoxFit.cover,):Icon(Icons.add_a_photo,color: Colors.black,)
// Column(
// children: [
//
// IconButton(
// onPressed: (){
// proPickImage();
// },
// icon: Icon(Icons.camera_alt,size: 50,)),
// Text(" Add Image",
// style: TextStyle(fontSize: 20,
// fontWeight: FontWeight.w700,color: Colors.black),
// ),
//
// ],
// ),
),
),
),
);
}
Widget _listView() {
return ListView.builder(
itemCount: _fields.length,
itemBuilder: (context, index) {
return Container(
margin: EdgeInsets.all(5),
child: _fields[index],
);
},
);
}
Future proPickImage() async {
try {
final proImage = await ImagePicker()
.pickImage(source: ImageSource.gallery, imageQuality: 60);
if (proImage == null) {
return;
}
final imageTemporary = File(proImage.path);
setState(() => _proImage = imageTemporary);
} on PlatformException {
return "Failed to Pick";
}
}
}
class Type extends StatelessWidget {
final String hinttext;
const Type({Key? key,required this.hinttext}) : super(key: key);
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.only(left: 30,right: 30,top: 50),
child: TextField(
decoration: InputDecoration(
hintText: hinttext,
hintStyle: TextStyle(fontSize: 16,
fontWeight: FontWeight.w600,color: Colors.black)
),
),
);
}
}
// class ProductDetails extends StatelessWidget {
// final String htext;
// const ProductDetails({Key? key,required this.htext}) : super(key: key);
//
//
//
// @override
// Widget build(BuildContext context) {
// return Padding(
// padding: const EdgeInsets.only(left: 30,top: 50,right: 120),
// child: Row(
// children: [
// TextField(
// decoration: InputDecoration(
// hintText: htext,
// hintStyle: TextStyle(fontSize: 16,
// fontWeight: FontWeight.w600,color: Colors.black),
// ),
// ),
// ]
// )
// );
// }
// }
// class TextFieldInput extends StatefulWidget {
// const TextFieldInput({Key? key}) : super(key: key);
// @override
// _TextFieldInputState createState() => _TextFieldInputState();
// }
//
// class _TextFieldInputState extends State<TextFieldInput> {
//
// @override
// Widget build(BuildContext context) {
// return SafeArea(
// child: Row(
// children: [
// _add
// ],
// )
//
// );
// return Padding(
// padding: const EdgeInsets.only(left: 30,top: 50,right: 30),
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: const [
// TextField(
// decoration: InputDecoration(
// hintText: "Product Details",
// hintStyle: TextStyle(fontSize: 16,
// fontWeight: FontWeight.w600,color: Colors.black),
// ),
// )
// ],
// ),
// );
// }
// }
// class _View1 extends StatefulWidget {
// @override
// _View1State createState() => _View1State();
// }
// class _View1State extends State<_View1> {
// List<TextEditingController> _controllers = [];
// List<TextField> _fields = [];
//
// @override
// void dispose() {
// for (final controller in _controllers) {
// controller.dispose();
// }
// super.dispose();
// }
//
// Widget _addTile() {
// return ListTile(
// title: Icon(Icons.add),
// onTap: () {
// final controller = TextEditingController();
// final field = TextField(
// controller: controller,
// decoration: InputDecoration(
// border: OutlineInputBorder(),
// labelText: "name${_controllers.length + 1}",
// ),
// );
//
// setState(() {
// _controllers.add(controller);
// _fields.add(field);
// });
// },
// );
// }
// @override
// Widget build(BuildContext context) {
// return SafeArea(
// child: Scaffold(
// appBar: AppBar(
// title: Text("Dynamic Text Field"),
// ),
// body: Column(
// children: [
// _addTile(),
// Expanded(child: _listView()),
// _okButton(),
// ],
// )),
// );
// }Widget _okButton() {
// return ElevatedButton(
// onPressed: () async {
// String text = _controllers
// .where((element) => element.text != "")
// .fold("", (acc, element) => acc += "${element.text}\n");
// final alert = AlertDialog(
// title: Text("Count: ${_controllers.length}"),
// content: Text(text.trim()),
// actions: [
// TextButton(
// onPressed: () {
// Navigator.of(context).pop();
// },
// child: Text("OK"),
// ),
// ],
// );
// await showDialog(
// context: context,
// builder: (BuildContext context) => alert,
// );
// setState(() {});
// },
// child: Text("OK"),
// );
// }
// Widget _listView() {
// return ListView.builder(
// itemCount: _fields.length,
// itemBuilder: (context, index) {
// return Container(
// margin: EdgeInsets.all(5),
// child: _fields[index],
// );
// },
// );
// }
//
// }
// class _View2 extends StatelessWidget {
// const _View2({Key? key}) : super(key: key);
//
// @override
// Widget build(BuildContext context) {
// return const Placeholder();
// }
// }