vk_custom_widgets
A lightweight Flutter package providing reusable custom widgets with clean APIs and best practices.
Features
- Simple and reusable custom widgets
- Clean, stateless implementations
- Material design compliant
- Ready for extension and theming
Installation
Add this to your pubspec.yaml:
dependencies:
vk_custom_widgets: ^1.0.0
Then run:
flutter pub get
Usage
import 'package:vk_custom_widgets/vk_custom_widgets.dart';
VkElevatedButton(
label: 'Submit',
onPressed: () {
// Handle button press
},
);
VkPasswordFormField(
label: 'Password',
controller: _passwordController,
);
VkTextFormField(
label: 'Name',
controller: _nameController
);
Libraries
- vk_custom_widgets
- A collection of custom widgets for Flutter, including buttons, text fields, and dropdowns.