Skip to content

Commit ed421b7

Browse files
Merge pull request #141 from gluestack/feat/version-0.0.1-alpha.5
Feat/version 0.0.1 alpha.5
2 parents b981af2 + 590cae2 commit ed421b7

File tree

81 files changed

+696
-858
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+696
-858
lines changed

.pubignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
example/lib/kitchensink_gluestack_example
2+
example/lib/example/storybook

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here are few helpful links to give you an idea of what gluestack-ui-flutter is c
1818

1919
To keep track of latest developments in gluestack-ui-flutter you can refer to this link: https://github.com/gluestack/gluestack-ui-flutter/tree/feature/core-widgets.
2020

21-
_We are inspired from gluestack-ui to create gluestack-ui-flutter. Flutter documentation is in progress._
21+
Documentation: https://flutter.gluestack.io/
2222

2323
## Features
2424

example/integration_test/plugin_integration_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// // For more information about Flutter integration tests, please see
77
// // https://docs.flutter.dev/cookbook/testing/integration/introduction
88

9-
109
// import 'package:flutter_test/flutter_test.dart';
1110
// import 'package:integration_test/integration_test.dart';
1211

example/lib/custom_config.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Map<String, dynamic> customButton2 = {
3030
'bg': '\$primary600',
3131
'borderColor': '\$primary300',
3232
},
33-
3433
},
3534
},
3635
':disabled': {

example/lib/example/checkbox_example.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ class CheckBoxExample extends StatefulWidget {
1212
}
1313

1414
class _CheckBoxExampleState extends State<CheckBoxExample> {
15-
final List dropdownSizeOptions = [GSCheckBoxSizes.$sm, GSCheckBoxSizes.$md, GSCheckBoxSizes.$lg];
15+
final List dropdownSizeOptions = [
16+
GSCheckBoxSizes.$sm,
17+
GSCheckBoxSizes.$md,
18+
GSCheckBoxSizes.$lg
19+
];
1620
GSCheckBoxSizes selectedSizeOption = GSCheckBoxSizes.$md;
1721
void updateSizeSelectedOption(dynamic newOption) {
1822
setState(() {

example/lib/example/fab_example.dart

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ class FabExample extends StatefulWidget {
1212
}
1313

1414
class _FabExampleState extends State<FabExample> {
15-
final List dropdownSizeOptions = [GSFABSizes.$sm, GSFABSizes.$md, GSFABSizes.$lg];
15+
final List dropdownSizeOptions = [
16+
GSFABSizes.$sm,
17+
GSFABSizes.$md,
18+
GSFABSizes.$lg
19+
];
1620
final List dropdownPlacementOptions = [
17-
GSFABPlacements.bottomCenter,
18-
GSFABPlacements.bottomLeft,
19-
GSFABPlacements.bottomRight,
20-
GSFABPlacements.topCenter,
21-
GSFABPlacements.topLeft,
22-
GSFABPlacements.topRight
21+
GSFABPlacements.bottomCenter,
22+
GSFABPlacements.bottomLeft,
23+
GSFABPlacements.bottomRight,
24+
GSFABPlacements.topCenter,
25+
GSFABPlacements.topLeft,
26+
GSFABPlacements.topRight
2327
];
2428
GSFABSizes selectedSizeOption = GSFABSizes.$md;
2529
GSFABPlacements selectedPlacementOption = GSFABPlacements.bottomRight;

example/lib/example/form_example.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ class FormExample extends StatefulWidget {
1515
class _FormExampleState extends State<FormExample> {
1616
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
1717
Value groupValue = Value.one;
18-
final List dropdownSizeOptions = [GSFormControlSizes.$sm, GSFormControlSizes.$md, GSFormControlSizes.$lg];
18+
final List dropdownSizeOptions = [
19+
GSFormControlSizes.$sm,
20+
GSFormControlSizes.$md,
21+
GSFormControlSizes.$lg
22+
];
1923
void updateSizeSelectedOption(dynamic newOption) {
2024
setState(() {
2125
selectedSizeOption = newOption;

example/lib/example/icon_example.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ class IconExample extends StatefulWidget {
1212

1313
class _IconExampleState extends State<IconExample> {
1414
final List dropdownSizeOptions = [
15-
GSIconSizes.$xs,
16-
GSIconSizes.$sm,
17-
GSIconSizes.$md,
18-
GSIconSizes.$lg,
19-
GSIconSizes.$xl,
15+
GSIconSizes.$xs,
16+
GSIconSizes.$sm,
17+
GSIconSizes.$md,
18+
GSIconSizes.$lg,
19+
GSIconSizes.$xl,
2020
];
2121
GSIconSizes selectedSizeOption = GSIconSizes.$md;
2222

example/lib/example/image_example.dart

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ class ImageExample extends StatefulWidget {
1212

1313
class _ImageExampleState extends State<ImageExample> {
1414
final List dropdownSizeOptions = [
15-
GSImageSizes.$2xs,
16-
GSImageSizes.$xs,
17-
GSImageSizes.$sm,
18-
GSImageSizes.$md,
19-
GSImageSizes.$lg,
20-
GSImageSizes.$xl,
21-
GSImageSizes.$2xl,
15+
GSImageSizes.$2xs,
16+
GSImageSizes.$xs,
17+
GSImageSizes.$sm,
18+
GSImageSizes.$md,
19+
GSImageSizes.$lg,
20+
GSImageSizes.$xl,
21+
GSImageSizes.$2xl,
2222
];
2323
GSImageSizes selectedSizeOption = GSImageSizes.$md;
2424
void updateSizeSelectedOption(dynamic newOption) {

example/lib/example/text_area_example.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ class TextAreaExample extends StatefulWidget {
1313

1414
class _TextAreaExampleState extends State<TextAreaExample> {
1515
final List dropdownSizeOptions = [
16-
GSTextAreaSizes.$sm,
17-
GSTextAreaSizes.$md,
18-
GSTextAreaSizes.$lg,
19-
GSTextAreaSizes.$xl,
16+
GSTextAreaSizes.$sm,
17+
GSTextAreaSizes.$md,
18+
GSTextAreaSizes.$lg,
19+
GSTextAreaSizes.$xl,
2020
];
2121
GSTextAreaSizes selectedSizeOption = GSTextAreaSizes.$md;
2222

0 commit comments

Comments
 (0)