-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split forui library into sub-libraries
- Loading branch information
Showing
5 changed files
with
39 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Next | ||
|
||
* Change default `FTextFieldStyle`'s vertical content padding from `5` to `15`. | ||
* Split exports in `forui.dart` into sub-libraries. | ||
|
||
## 0.1.0 | ||
|
||
* Initial release! 🚀 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// The bundled assets in [forui_assets](https://github.com/forus-labs/forui/tree/main/forui_assets), exported for | ||
/// convenience. | ||
library forui.assets; | ||
|
||
export 'package:forui_assets/forui_assets.dart'; | ||
export 'package:forui/src/svg_extension.nitrogen.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,6 @@ | ||
/// A Flutter package for building beautiful user interfaces. | ||
library forui; | ||
|
||
// Icons | ||
export 'package:forui_assets/forui_assets.dart'; | ||
export 'package:forui/src/svg_extension.nitrogen.dart'; | ||
|
||
// Theme | ||
export 'src/theme/color_scheme.dart'; | ||
export 'src/theme/style.dart'; | ||
export 'src/theme/theme.dart'; | ||
export 'src/theme/theme_data.dart'; | ||
|
||
export 'src/theme/typography.dart'; | ||
|
||
// Themes | ||
export 'src/theme/themes.dart'; | ||
|
||
// Foundation | ||
export 'src/foundation/tappable.dart' hide FTappable; | ||
|
||
// Widgets | ||
export 'src/widgets/badge/badge.dart' hide FBadgeContent, Variant; | ||
export 'src/widgets/button/button.dart' hide FButtonContent, Variant; | ||
export 'src/widgets/card/card.dart' hide FCardContent; | ||
export 'src/widgets/dialog/dialog.dart' hide FDialogContent, FHorizontalDialogContent, FVerticalDialogContent; | ||
export 'src/widgets/header/header.dart'; | ||
export 'src/widgets/tabs/tabs.dart'; | ||
export 'src/widgets/text_field/text_field.dart'; | ||
export 'src/widgets/scaffold.dart'; | ||
export 'src/widgets/separator.dart'; | ||
export 'src/widgets/switch.dart'; | ||
export 'assets.dart'; | ||
export 'theme.dart'; | ||
export 'widgets.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/// Classes and functions for configuring the Forui widgets' theme. A theme configures the colors and typographic | ||
/// choices of Forui widgets. | ||
library forui.theme; | ||
|
||
import 'package:forui/theme.dart'; | ||
|
||
export 'src/theme/color_scheme.dart'; | ||
export 'src/theme/style.dart'; | ||
export 'src/theme/theme.dart'; | ||
export 'src/theme/theme_data.dart'; | ||
export 'src/theme/typography.dart'; | ||
export 'src/theme/themes.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// The Forui widgets and their corresponding styles. | ||
library forui.widgets; | ||
|
||
export 'src/widgets/badge/badge.dart' hide FBadgeContent, Variant; | ||
export 'src/widgets/button/button.dart' hide FButtonContent, Variant; | ||
export 'src/widgets/card/card.dart' hide FCardContent; | ||
export 'src/widgets/dialog/dialog.dart' hide FDialogContent, FHorizontalDialogContent, FVerticalDialogContent; | ||
export 'src/widgets/header/header.dart'; | ||
export 'src/widgets/tabs/tabs.dart'; | ||
export 'src/widgets/text_field/text_field.dart' hide defaultContextMenuBuilder; | ||
export 'src/widgets/scaffold.dart'; | ||
export 'src/widgets/separator.dart'; | ||
export 'src/widgets/switch.dart'; |