-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathBlogRow.dart
82 lines (78 loc) · 2.83 KB
/
BlogRow.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
import 'package:flutter/material.dart';
import 'package:firebase_database/firebase_database.dart';
import 'package:transparent_image/transparent_image.dart';
@override
class BlogRow extends StatelessWidget {
final DataSnapshot snapshot;
BlogRow(this.snapshot);
bool _liked = false;
@override
Widget build(BuildContext context) {
// var size = MediaQuery.of(context).size;
// final double itemHeight = (size.height - kToolbarHeight - 24) / 2.2;
// final double itemWidth = size.width;
return new Container(
child: new InkWell(
child: new Card(
elevation: 2.5,
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new FadeInImage.memoryNetwork(
placeholder: kTransparentImage,
image: snapshot.value['IMAGE'],
alignment: Alignment.topCenter,
fit: BoxFit.contain,
),
// new Image.network(snapshot.value['IMAGE']),
new Padding(
padding: const EdgeInsets.fromLTRB(8.0, 8.0, 0.0, 0.0),
child: new Text(
snapshot.value['Title'],
style:
new TextStyle(fontWeight: FontWeight.bold, fontSize: 20.0),
),
),
new Padding(
padding: const EdgeInsets.fromLTRB(8.0, 8.0, 0.0, 0.0),
child: new Text(
snapshot.value['DESCRIPTION'],
style: new TextStyle(
fontWeight: FontWeight.normal, fontSize: 16.0),
),
),
new Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text(snapshot.value['username'],
style: new TextStyle(color: Colors.blueAccent)),
new IconButton(
icon: _liked
? new Icon(
Icons.favorite,
color: Colors.blueAccent,
)
: new Icon(
Icons.favorite_border,
color: Colors.blueAccent,
),
onPressed: () {
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text("Coming Soon!"),
));
}),
],
),
],
),
),
onTap: (){
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text("Clicked on Blog "+snapshot.value['Title']),
));
},
),
);
}
}