Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -403,16 +403,16 @@ class _MyHomePageState extends State<MyHomePage>
// ),
// ),
//
// GFCard(
// content: GFImageOverlay(
// height: 200.0,
// width: 200.0,
// image: AssetImage("lib/assets/food.jpeg"),
// boxFit: BoxFit.fill,
// colorFilter: new ColorFilter.mode(Colors.black.withOpacity(0.67), BlendMode.darken),
// shape: BoxShape.circle,
// ),
// ),
GFCard(
content: GFImageOverlay(
height: 200.0,
width: 200.0,
image: AssetImage("lib/assets/food.jpeg"),
boxFit: BoxFit.fill,
colorFilter: new ColorFilter.mode(Colors.black.withOpacity(0.67), BlendMode.darken),
shape: BoxShape.circle,
),
),
//
// GFCard(
// content: Container(
Expand Down
4 changes: 2 additions & 2 deletions lib/components/list_tile/gf_list_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ class GFListTile extends StatelessWidget {
description ?? Container()
],
)
: null,
: Container(),
trailing: icon != null
? Column(
children: <Widget>[
Padding(
padding: EdgeInsets.only(top: 16.0), child: icon)
],
)
: null),
: Container()),
),
showDivider
? Divider(
Expand Down