Skip to content

Commit 0348b34

Browse files
Sandip KakadiyaSandip Kakadiya
authored andcommitted
update check
1 parent 3136738 commit 0348b34

File tree

6 files changed

+26
-17
lines changed

6 files changed

+26
-17
lines changed

CHANGELOG.md

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

3+
## 1.0.11 - 2020-03-11
4+
5+
### Fixed
6+
* Resolved issues.
7+
8+
## 1.0.10 - 2020-03-11
9+
10+
### Fixed
11+
* Few minor fixes
12+
313
## 1.0.9 - 2020-03-02
414

515
### Fixed

example/lib/main_temp.dart

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,13 @@ class _MyHomePageState extends State<MyHomePage>
253253
mainAxisAlignment: MainAxisAlignment.center,
254254
crossAxisAlignment: CrossAxisAlignment.center,
255255
children: <Widget>[
256-
257256
GFAccordion(
258-
titleChild: Text('fgk'),
259-
contentChild: Text('hhjk'),
257+
titleChild: Text('fgk'),
258+
contentChild: Text('hhjk'),
260259
// title: 'GF Accordion',
261260
// content: 'GetFlutter is an open source library that comes with pre-build 1000+ UI components.',
262261
collapsedIcon: Text('Show'),
263-
expandedIcon: Text('Hide')
264-
),
262+
expandedIcon: Text('Hide')),
265263

266264
// GFFloatingWidget(
267265
// child: GFToast(

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.9"
95+
version: "1.0.11"
9696
image:
9797
dependency: transitive
9898
description:

lib/components/carousel/gf_carousel.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,9 @@ class _GFCarouselState extends State<GFCarousel> with TickerProviderStateMixin {
224224
scrollDirection: widget.scrollDirection,
225225
controller: widget.pageController,
226226
reverse: widget.reverse,
227-
itemCount: widget.items.length == 1 ? widget.items.length : widget.enableInfiniteScroll ? null : widget.items.length,
227+
itemCount: widget.items.length == 1
228+
? widget.items.length
229+
: widget.enableInfiniteScroll ? null : widget.items.length,
228230
onPageChanged: (int index) {
229231
int currentPage;
230232
currentPage = _getRealIndex(index + widget.initialPage,

lib/components/toast/gf_toast.dart

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class GFToast extends StatefulWidget {
1919
this.animationDuration = const Duration(milliseconds: 300),
2020
this.duration = const Duration(milliseconds: 300),
2121
this.textStyle = const TextStyle(color: Colors.white70),
22-
this. autoDismissDuration= const Duration(milliseconds: 3000),
22+
this.autoDismissDuration = const Duration(milliseconds: 3000),
2323
}) : super(key: key);
2424

2525
/// child of type [Widget]is alternative to text key. text will get priority over child
@@ -52,8 +52,8 @@ class GFToast extends StatefulWidget {
5252
///type of [Duration] which takes the duration of the animation
5353
final Duration duration;
5454

55-
///type of [Duration] which takes the duration of the autoDismiss
56-
final Duration autoDismissDuration;
55+
///type of [Duration] which takes the duration of the autoDismiss
56+
final Duration autoDismissDuration;
5757

5858
/// type of [Alignment] used to align the text inside the toast
5959
final Alignment alignment;
@@ -78,21 +78,20 @@ class _GFToastState extends State<GFToast> with TickerProviderStateMixin {
7878
curve: Curves.easeIn,
7979
);
8080

81-
if(mounted) {
81+
if (mounted) {
8282
animationController.forward();
8383
fadeanimationController = AnimationController(
8484
vsync: this,
8585
duration: widget.animationDuration,
86-
)
87-
..addListener(() => setState(() {}));
86+
)..addListener(() => setState(() {}));
8887
fadeanimation = Tween<double>(
8988
begin: 0,
9089
end: 1,
9190
).animate(fadeanimationController);
9291
Timer(widget.duration, () {
93-
if(mounted){
94-
fadeanimationController.forward();
95-
}
92+
if (mounted) {
93+
fadeanimationController.forward();
94+
}
9695
});
9796
fadeanimation = Tween<double>(
9897
begin: 1,

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.9
3+
version: 1.0.11
44
#author: GetFlutter <[email protected]>
55
homepage: https://github.com/ionicfirebaseapp/getflutter
66

0 commit comments

Comments
 (0)