Skip to content

Commit 72d1214

Browse files
authored
Merge pull request #65 from gluestack/development
Development
2 parents 1d90d32 + 3f6a9fe commit 72d1214

File tree

13 files changed

+31
-18
lines changed

13 files changed

+31
-18
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
**gluestack-ui-flutter** is a universal UI library that provides optionally styled and accessible widgets. These widgets are designed for easy integration into applications developed with Flutter.
44

5+
_Package is in development. APIs may change in the future._
6+
57
## Documentation
68

7-
TODO
9+
You can try the example app demo on this link: https://gluestack-flutter.web.app/
10+
11+
We are referring gluestack-ui to create gluestack-ui-flutter. Flutter documantation is in progress. You can find detailed documentation for each component, including a list of props and examples, in https://gluestack.io/ui/docs website.
812

913
## Features
1014

@@ -22,8 +26,19 @@ TODO
2226

2327
## Installation
2428

25-
```bash
26-
flutter pub add gluestack_ui
29+
Add the package to your dependencies:
30+
31+
```yaml
32+
dependencies:
33+
gluestack_ui: 0.0.1-alpha.1
34+
```
35+
36+
OR
37+
38+
```yaml
39+
dependencies:
40+
gluestack_ui:
41+
git: https://github.com/gluestack/gluestack-ui-flutter.git
2742
```
2843
2944
## Usage

example/lib/example/KitchenSink/components/list_your_place_modal/modal.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ class _ListYourPlaceModalState extends State<ListYourPlaceModal> {
3333

3434
@override
3535
Widget build(BuildContext context) {
36-
final themeProvider = Provider.of<ThemeProvider>(context);
3736
return AlertDialog(
3837
title: GSHStack(
3938
mainAxisAlignment: MainAxisAlignment.spaceBetween,

example/lib/utils/base_layout.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:flutter/foundation.dart';
21
import 'package:flutter/material.dart';
32
import 'package:flutter_syntax_view/flutter_syntax_view.dart';
43
import 'package:gluestack_ui/gluestack_ui.dart';
File renamed without changes.
File renamed without changes.

lib/src/token/public.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
export 'color_token.dart';
2-
export 'radii_token.dart';
3-
export 'space_token.dart';
4-
export 'border_width_token.dart';
5-
export 'font_size_token.dart';
6-
export 'letter_spacing_token.dart';
1+
export 'color.dart';
2+
export 'radii.dart';
3+
export 'space.dart';
4+
export 'border_width.dart';
5+
export 'font_size.dart';
6+
export 'letter_spacing.dart';
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)