widgets_helper 1.0.0
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(),
);
}
}