Skip to content

Commit 6cb7c35

Browse files
authored
Merge pull request #30 from ionicfirebaseapp/master
master pull
2 parents b7991b3 + b575e79 commit 6cb7c35

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 1.0.7 - 2020-02-11
4+
5+
### Fixed
6+
* GFLoader - import issue fixed
7+
8+
### Added
9+
* added new component
10+
- GFFloatingWidget
11+
12+
13+
14+
15+
316
## 1.0.5 - 2020-02-07
417

518
### Fixed

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ packages:
9292
path: ".."
9393
relative: true
9494
source: path
95-
version: "1.0.5"
95+
version: "1.0.7"
9696
image:
9797
dependency: transitive
9898
description:

lib/components/appbar/gf_appbar.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -321,12 +321,12 @@ class _GFAppBarState extends State<GFAppBar> {
321321
IconThemeData actionsIconTheme = widget.actionsIconTheme ??
322322
appBarTheme.actionsIconTheme ??
323323
overallIconTheme;
324-
TextStyle centerStyle = widget.textTheme?.headline6 ??
325-
appBarTheme.textTheme?.headline6 ??
326-
theme.primaryTextTheme.headline6;
327-
TextStyle sideStyle = widget.textTheme?.bodyText2 ??
328-
appBarTheme.textTheme?.bodyText2 ??
329-
theme.primaryTextTheme.bodyText2;
324+
TextStyle centerStyle = widget.textTheme?.headline ??
325+
appBarTheme.textTheme?.headline ??
326+
theme.primaryTextTheme.headline;
327+
TextStyle sideStyle = widget.textTheme?.body1 ??
328+
appBarTheme.textTheme?.body1 ??
329+
theme.primaryTextTheme.body1;
330330

331331
if (widget.toolbarOpacity != 1.0) {
332332
final double opacity = const Interval(

lib/components/avatar/gf_avatar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class GFAvatar extends StatelessWidget {
8787
final Color foregroundColor = this.foregroundColor;
8888
assert(debugCheckHasMediaQuery(context));
8989
final ThemeData theme = Theme.of(context);
90-
TextStyle textStyle = theme.primaryTextTheme.subtitle1.copyWith(
90+
TextStyle textStyle = theme.primaryTextTheme.subtitle.copyWith(
9191
color: foregroundColor,
9292
);
9393
Color effectiveBackgroundColor = backgroundColor;

lib/getflutter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export 'package:getflutter/components/toggle/gf_toggle.dart';
3030
export 'package:getflutter/components/typography/gf_typography.dart';
3131
export 'package:getflutter/components/rating/gf_rating.dart';
3232
export 'package:getflutter/components/slidable/gf_slidable.dart';
33-
export 'package:getflutter/components/shimmer/gf_shimmer.dart';
33+
// export 'package:getflutter/components/shimmer/gf_shimmer.dart';
3434
export 'package:getflutter/components/loader/gf_loader.dart';
3535

3636
// exports shape, color, position, size, types

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: getflutter
22
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.5
3+
version: 1.0.7
44
#author: GetFlutter <[email protected]>
55
homepage: https://github.com/ionicfirebaseapp/getflutter
66

0 commit comments

Comments
 (0)