https://github.com/dizzpy/sam_uiz
Making Sample Flutter Package for Testing
https://github.com/dizzpy/sam_uiz
Last synced: about 1 year ago
JSON representation
Making Sample Flutter Package for Testing
- Host: GitHub
- URL: https://github.com/dizzpy/sam_uiz
- Owner: dizzpy
- License: mit
- Created: 2024-12-19T10:52:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-19T12:14:16.000Z (over 1 year ago)
- Last Synced: 2025-03-20T16:49:01.773Z (about 1 year ago)
- Language: Dart
- Homepage: https://pub.dev/packages/sam_uiz
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sam_uiz
A customizable UI components library for Flutter. This package provides reusable components like buttons, input fields, and cards for quick integration into your Flutter apps.
## Installation
To use this package, add `sam_uiz` to your `pubspec.yaml` file:
```yaml
dependencies:
sam_uiz:
git:
url: https://github.com/dizzpy/sam_uiz.git
```
## Usage
### DizzexButton
```dart
DizzexButton(
title: 'Press Me',
onPressed: () {
print('Button pressed!');
},
)
```
### DizzexCard
```dart
DizzexCard(
widget: Text('Card content'),
)
```
### DizzexInputBox
```dart
DizzexInputBox(
controller: myController,
hintText: 'Enter text here',
title: 'Input Field',
)
```
## Example
You can check out the example usage in the `/example` folder.
## License
This package is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
## Contributing
Feel free to open an issue or pull request if you'd like to contribute to this package.