File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export 'package:getflutter/components/toggle/gf_toggle.dart';
3030export 'package:getflutter/components/typography/gf_typography.dart' ;
3131export 'package:getflutter/components/rating/gf_rating.dart' ;
3232export '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';
3434export 'package:getflutter/components/loader/gf_loader.dart' ;
3535export 'package:getflutter/components/progress_indicator/gf_progress_indicator.dart' ;
3636export 'package:getflutter/components/progress_indicator/progress_bar.dart' ;
Original file line number Diff line number Diff line change 11name : getflutter
22description : 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 <info@getflutter.dev>
55homepage : https://github.com/ionicfirebaseapp/getflutter
66
You can’t perform that action at this time.
0 commit comments