widgets_helper 1.0.0 copy "widgets_helper: ^1.0.0" to clipboard
widgets_helper: ^1.0.0 copied to clipboard

A comprehensive Flutter plugin providing useful widgets and tools including SimpleButton, SimpleContainer, and SimpleTextInputField with extensive customization options, padding controls for icons, an [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:widgets_helper/widgets_helper.dart';
import 'widgets_showcase.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Widgets Helper Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      home: const WidgetsShowcase(),
    );
  }
}
0
likes
130
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter plugin providing useful widgets and tools including SimpleButton, SimpleContainer, and SimpleTextInputField with extensive customization options, padding controls for icons, and default styling.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on widgets_helper

Packages that implement widgets_helper