vk_custom_widgets 0.0.1
vk_custom_widgets: ^0.0.1 copied to clipboard
A package containing most used custom widgets like - custom elevated buttons, password text form fields etc.
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: ^0.1.0
Then run:
flutter pub get
Usage #
import 'package:vk_custom_widgets/vk_custom_widgets.dart';
VkCustomElevatedButton(
label: 'Submit',
onPressed: () {
// Handle button press
},
);