vk_custom_widgets 1.0.1 copy "vk_custom_widgets: ^1.0.1" to clipboard
vk_custom_widgets: ^1.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: ^1.0.0

Then run:

flutter pub get

Usage #

Elevated Button #

import 'package:vk_custom_widgets/vk_custom_widgets.dart';

VkElevatedButton(
  label: 'Submit',
  onPressed: () {
    // Handle button press
  },
);

Password Form Field #

VkPasswordFormField(
  label: 'Password',
  controller: _passwordController,
);

Text Form Field #

VkTextFormField(
  label: 'Name',
  controller: _nameController,
);
VkDropdown<String>(
  items: ['Option 1', 'Option 2', 'Option 3'],
  value: _selectedValue,
  hint: 'Select an option',
  onChanged: (value) {
    setState(() => _selectedValue = value);
  },
);
1
likes
160
points
146
downloads

Publisher

unverified uploader

Weekly Downloads

A package containing most used custom widgets like - custom elevated buttons, password text form fields etc.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on vk_custom_widgets