An open API service indexing awesome lists of open source software.

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

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.