Skip to content

Commit bf77349

Browse files
Merge pull request #44 from Sandipkakadiya/review
Review
2 parents 98f3a02 + ab91529 commit bf77349

File tree

7 files changed

+40
-32
lines changed

7 files changed

+40
-32
lines changed

CHANGELOG.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
# Changelog
22

3-
## 0.0.1-pre.3 - 2014-01-14
3+
4+
## 1.0.0-dev.1 - 2014-01-14
45

56
### Fixed
7+
* Warnings and Hints
8+
69

7-
* Corrected warnings and hits
10+
## 0.0.1-pre.3 - 2014-01-14
11+
12+
### Fixed
13+
* Warnings and Hints
814

915
### Added
16+
* Changelog and Description
1017

11-
* Changelog and description
1218

13-
## 14.0.0 - 2042-10-06
19+
## 0.0.1-pre.2 - 2014-01-14
20+
21+
### Fixed
22+
* Warnings and Hints
1423

15-
### Added
1624

17-
* Introduced animals into the world, we believe they're going to be a neat addition.
25+
## 0.0.1-pre.1 - 2014-01-13
26+
27+
### Added
28+
* initial release with buttons, badge, card, list tile, avatar and many more components.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ packages:
8080
path: ".."
8181
relative: true
8282
source: path
83-
version: "0.0.1-pre.3"
83+
version: "1.0.0-dev.1"
8484
image:
8585
dependency: transitive
8686
description:

lib/components/list_tile/gf_list_tile.dart

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -100,25 +100,25 @@ class GFListTile extends StatelessWidget {
100100
margin: padding,
101101
color: color,
102102
child: ListTile(
103-
leading: avatar,
104-
title: title,
105-
subtitle: subTitle != null || description != null
106-
? Column(
107-
crossAxisAlignment: CrossAxisAlignment.start,
108-
children: <Widget>[
109-
subTitle ?? Container(),
110-
description ?? Container()
111-
],
112-
)
113-
: Container(),
114-
trailing: icon != null
115-
? Column(
116-
children: <Widget>[
117-
Padding(
118-
padding: EdgeInsets.only(top: 16.0), child: icon)
119-
],
120-
)
121-
: Container()),
103+
leading: avatar,
104+
title: title,
105+
subtitle: subTitle != null || description != null
106+
? Column(
107+
crossAxisAlignment: CrossAxisAlignment.start,
108+
children: <Widget>[
109+
subTitle ?? Container(),
110+
description ?? Container()
111+
],
112+
)
113+
: null,
114+
trailing: icon != null
115+
? Column(
116+
children: <Widget>[
117+
Padding(padding: EdgeInsets.only(top: 16.0), child: icon)
118+
],
119+
)
120+
: null,
121+
),
122122
),
123123
showDivider
124124
? Divider(
@@ -128,7 +128,7 @@ class GFListTile extends StatelessWidget {
128128
indent: indent ?? dividerIndent,
129129
endIndent: endIndent ?? dividerEndIndent,
130130
)
131-
: Container()
131+
: null
132132
],
133133
);
134134
}

lib/components/tabs/gf_segment_tabs.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import 'package:flutter/rendering.dart';
44
import 'package:flutter/widgets.dart';
55
import 'package:getflutter/colors/gf_color.dart';
66
import 'package:getflutter/components/tabs/gf_tabBar.dart';
7-
import 'package:getflutter/colors/gf_color.dart';
87

98
/// Creates pills like structured tab bar. See [GFTabBar]
109
/// [GFSegmentTabs] are best used as an alternative for [GFTabBar].

lib/components/tabs/gf_tabBar.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import 'package:flutter/rendering.dart';
44
import 'package:flutter/widgets.dart';
55
import 'package:getflutter/colors/gf_color.dart';
66
import 'package:getflutter/components/tabs/gf_tabBarView.dart';
7-
import 'package:getflutter/colors/gf_color.dart';
87

98
/// A material design widget that displays a horizontal row of tabs.
109
///

lib/components/tabs/gf_tabs.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import 'package:flutter/widgets.dart';
55
import 'package:getflutter/colors/gf_color.dart';
66
import 'package:getflutter/components/tabs/gf_tabBarView.dart';
77
import 'package:getflutter/components/tabs/gf_tabBar.dart';
8-
import 'package:getflutter/colors/gf_color.dart';
98

109
/// Creates a default tab for the given [child] widget.
1110
///

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: getflutter
2-
description: GetFlutter is open source libraries that come with pre-build 1000+ UI components. We build this library to make flutter development faster and more enjoyable. You can customize the component as you will build own app without UI knowledge.
3-
version: 0.0.1-pre.3
2+
description: GetFlutter is open source libraries that come with pre-build 1000+ UI components. It makes development faster & more enjoyable. You can customize the component as per your need.
3+
version: 1.0.0-dev.1
44
#author: GetFlutter <[email protected]>
55
homepage: https://github.com/ionicfirebaseapp/getflutter
66

0 commit comments

Comments
 (0)