Skip to content

Commit b322fb9

Browse files
committed
completed GFDropdown and GFMultiselect
1 parent 1ac4267 commit b322fb9

3 files changed

Lines changed: 3 additions & 131 deletions

File tree

example/lib/main_temp.dart

Lines changed: 0 additions & 127 deletions
This file was deleted.

lib/components/dropdown/gf_dropdown.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class GFDropdown<T> extends StatefulWidget {
2828
this.dropdownColor,
2929
this.padding = const EdgeInsets.all(5),
3030
this.borderRadius = const BorderRadius.all(Radius.circular(4)),
31-
this.border = const BorderSide(color: Colors.white, width: 1, style: BorderStyle.solid),
32-
this.dropdownButtonColor = GFColors.WHITE
33-
})
31+
this.border = const BorderSide(
32+
color: Colors.white, width: 1, style: BorderStyle.solid),
33+
this.dropdownButtonColor = GFColors.WHITE})
3434
: super(key: key);
3535

3636
final DropdownButtonBuilder selectedItemBuilder;

lib/components/dropdown/gf_multiselect.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ class GFMultiSelect<T> extends StatefulWidget {
164164
/// defines the background color of the dropdown. Can be given [Color] or [GFColors]
165165
final Color dropdownbgColor;
166166

167-
168167
@override
169168
_GFMultiSelectState createState() => _GFMultiSelectState();
170169
}

0 commit comments

Comments
 (0)