Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
71b94e3
continue on tabs
deepikahr Dec 27, 2019
3319447
GFTabs created
deepikahr Dec 27, 2019
06682ea
GFTabs component created
deepikahr Dec 27, 2019
6bb5121
GFTabs animation completed
deepikahr Dec 27, 2019
2bc2718
GFTabs completed
deepikahr Dec 27, 2019
6c9c07e
GFTabs completed
deepikahr Dec 27, 2019
2bb7eaa
tab component completed
deepikahr Dec 27, 2019
32d5bfe
Merge pull request #16 from deepikahr/tabs
deepikahr Dec 27, 2019
428fc9e
list tile is in progress
shravyackm Dec 30, 2019
3403ab0
types of headers is in progress
shravyackm Dec 30, 2019
d880219
adding typograpy to the gf_header
shravyackm Dec 30, 2019
c257c7d
typograpy done in gf_header
shravyackm Dec 30, 2019
8fd677a
transparent button color fixing
deepikahr Dec 30, 2019
83207a0
working on button color transparency
deepikahr Dec 30, 2019
45df68b
checking all the components
shravyackm Dec 30, 2019
ce84396
overlay image modified
shravyackm Dec 30, 2019
f892292
different positions of toast is in progress
shravyackm Dec 30, 2019
e5d976c
transparent button problem fixed
deepikahr Dec 30, 2019
6060962
button outline with boxshadow fixed
deepikahr Dec 30, 2019
f5d6cbc
button boxshadow fixed
deepikahr Dec 30, 2019
abd73ac
Merge pull request #17 from deepikahr/tabs
deepikahr Dec 30, 2019
376bc80
different positions of toast done
shravyackm Dec 30, 2019
f10df4e
floating toggle done
shravyackm Dec 31, 2019
3adf880
adding comments to gfFloatingWidget
shravyackm Dec 31, 2019
9f85445
comments added to gfFloatingWidget
shravyackm Dec 31, 2019
4cbb4d1
Merge pull request #4 from ionicfirebaseapp/master
shravyackm Dec 31, 2019
d4d6bcc
master merged
shravyackm Dec 31, 2019
1363bf3
Merge pull request #18 from shravyackm/listtile
shravyackm Dec 31, 2019
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
911 changes: 341 additions & 570 deletions example/lib/main.dart

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions lib/colors/gf_color.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';


enum GFColor {
primary,
secondary,
Expand All @@ -15,6 +16,7 @@ enum GFColor {
transparent
}


const PRIMARY = Color(0xff3f6ad8);
const SECONDARY = Color(0xff6c757c);
const SUCCESS =Color(0xff3ac47c);
Expand Down
3 changes: 2 additions & 1 deletion lib/components/badge/gf_button_badge.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ class _GFButtonBadgeState extends State<GFButtonBadge> {
position: this.position,
size: this.size,
borderShape: widget.borderShape,
icon: widget.counterChild),
icon: widget.counterChild
),
),
);
}
Expand Down
Loading