-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dart
444 lines (312 loc) · 10.4 KB
/
main.dart
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import 'package:flutter/material.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:card_swiper/card_swiper.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'data.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
var _sliddata = data['body'];
Widget imgbuildr(index){
return Builder(
builder: (BuildContext context)=> GestureDetector(
child:firstimage( newsimage : _sliddata![index]['image'].toString(),
title : _sliddata![index]['title'].toString(),
cat : _sliddata![index]['date'].toString()
, id : index
, i : index),
onTap: () {
},
)
,
);
}
List <Widget> listimgs(imgs){
List <Widget> sliders =[] ;
for (var i = 0 ; i < imgs.length; i++) {
sliders.add(imgbuildr(i));
}
return sliders;
}
Widget mamonattchment(){
var addr = 0.05;
if (_sliddata!.length > 0 ){
var mul = 0.40;
var mult = 0.15;
if (MediaQuery.of(context).size.height <= 427){
mul = 0.48;
mult = 0.18;
} else if (MediaQuery.of(context).size.height <= 485 && MediaQuery.of(context).size.height > 427 ){
mul = 0.43;
mult = 0.18;
} else if (MediaQuery.of(context).size.height > 485 && MediaQuery.of(context).size.height <= 560 ){
mul = 0.392;
mult = 0.15;
} else if (MediaQuery.of(context).size.height > 560 && MediaQuery.of(context).size.height <= 597 ){
mul = 0.37;
mult = 0.18;
} else if (MediaQuery.of(context).size.height > 597 && MediaQuery.of(context).size.height <= 850 ){
mul = 0.37;
mult = 0.24;
}else if (MediaQuery.of(context).size.height > 850){
mul = 0.40;
mult = 0.26;
}
var widtt = MediaQuery.of(context).size.width * 0.4;
return
Container( color: Colors.white60,
height: MediaQuery.of(context).size.height * 0.3,
child:
Swiper(itemCount: _sliddata!.length,
itemBuilder: (context, index) {
return imgbuildr(index);
},
scrollDirection: Axis.horizontal,
loop: true,
control: new SwiperControl(
color: Colors.red
),
pagination: new SwiperPagination(
margin: new EdgeInsets.all(5.0),
builder: new DotSwiperPaginationBuilder(
color: Colors.grey, activeColor: Colors.red)
),
viewportFraction: 0.1,
scale: 2,
itemHeight: MediaQuery.of(context).size.height * 0.3,
itemWidth: MediaQuery.of(context).size.width * 0.85 ,
autoplayDelay: 9250,
duration: 622,
layout:
SwiperLayout.CUSTOM,
customLayoutOption: new CustomLayoutOption(
startIndex: -1,
stateCount: 3,
).addOpacity([
0.6,
0.6,
1.0
])
.addRotate([
0.03,
0.03,
0.0
])
.addScale([
0.8,
0.8,
0.96
],Alignment.center )
.addTranslate([
//offset(left,upp)
new Offset(-100.0, 5.0),
new Offset(100 , 5.0 ),
new Offset(0.0, 0.0)
]),
) ,
)
;
} else {
return Text('connection_error');
}
}
@override
Widget build(BuildContext context) {
return
DefaultTabController(
length: 2,
child:
Scaffold(
appBar: AppBar(
title: Text(widget.title),
bottom: TabBar(
tabs: [
Tab(
text: 'slide' ,
),
Tab(
text: 'just text',
),
],
isScrollable: true
),
),
body:
Center(
child:
TabBarView(
children: [
mamonattchment(),
Text('just another tab')
],
),
),
// This trailing comma makes auto-formatting nicer for build methods.
)
);
}
}
class firstimage extends StatefulWidget {
String? newsimage;
String? title;
String? cat;
int? id;
int? i;
bool? label;
String? over;
firstimage({required this.newsimage, required this.title, required this.cat , required this.id , required this.i ,this.label = true ,this.over='black'});
@override
State<StatefulWidget> createState() {
// TODO: implement createState
return SbigImage();
}
}
class SbigImage extends State<firstimage> {
@override
Widget build(BuildContext context) {
// TODO: implement build
return bigImageOverly(widget.newsimage, widget.title, widget.cat , widget.id , widget.i);
}
Widget bigImageOverly(newsimage, title, cat , id , i) {
Widget _cats;
var addo = 0.0;
if (widget.label == false){
_cats = Container(
);
} else {
addo = 0.02;
_cats = Container(
color: Colors.black,
child: Text(
cat,
style: TextStyle(
color: Colors.white,
fontSize: 14,
),
),
);
}
var mul = 0.40;
var mult = 0.17;
print('devis hieght is ' + MediaQuery.of(context).size.height.toString());
print('devis width is ' + MediaQuery.of(context).size.width.toString());
if (MediaQuery.of(context).size.height <= 427){
mul = 0.35;
mult = 0.23;
print(MediaQuery.of(context).size.height);
} else if (MediaQuery.of(context).size.height <= 485 && MediaQuery.of(context).size.height > 427 ){
mul = 0.35;
mult = 0.23;
print(MediaQuery.of(context).size.height);
} else if (MediaQuery.of(context).size.height > 485 && MediaQuery.of(context).size.height <= 560 ){
mul = 0.35;
mult = 0.23;
print(MediaQuery.of(context).size.height);
} else if (MediaQuery.of(context).size.height > 560 && MediaQuery.of(context).size.height <= 597 ){
mul = 0.37;
mult = 0.23;
print(MediaQuery.of(context).size.height);
} else if (MediaQuery.of(context).size.height > 597 && MediaQuery.of(context).size.height <= 850 ){
mul = 0.37;
mult = 0.23;
print(MediaQuery.of(context).size.height);
}else if (MediaQuery.of(context).size.height > 850 ){
print(MediaQuery.of(context).size.height);
mul = 0.40;
mult = 0.29;
}
if (widget.over == 'white'){
var ratio = 16/9;
if (widget.cat == 'auther'){
ratio = 1/1;
}
return Center(
child: CachedNetworkImage(
imageUrl:newsimage,
),
);
} else {
var ImagH = 0.20;
var TitlH = ImagH * 0.68 ;
var TitlB = ImagH * 0.32 ;
var FontS = 18.0;
return Center(
child: Column(
children: <Widget>[
SizedBox(
height: MediaQuery.of(context).size.height * 0.01,
),
Stack(
children: <Widget>[
CachedNetworkImage(
imageUrl:newsimage,
height: MediaQuery.of(context).size.height * ImagH
,
width: MediaQuery.of(context).size.width * 1,
fit: BoxFit.cover,
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
// verticalDirection: VerticalDirection.up,
// mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
// _cats,
SizedBox(
height: MediaQuery.of(context).size.height * TitlH,
),
SizedBox(
height: MediaQuery.of(context).size.height * TitlB,
width: MediaQuery.of(context).size.width * 1,
child: Padding(
padding: EdgeInsets.all(9.0),
child: Text(
title,
overflow: TextOverflow.clip,
maxLines: 2,
textAlign: TextAlign.center,
style: TextStyle(
fontWeight: FontWeight.bold
,
fontSize: FontS,
color: Colors.white,
),
),
)
),
],
)
],
),
],
));
}
}
}