widgets_easier 0.0.1 copy "widgets_easier: ^0.0.1" to clipboard
widgets_easier: ^0.0.1 copied to clipboard

Widgets Easier is an open-source Flutter component library that comes with multiple pre-built UI components. It aims to make development faster, simpler, and more efficient, turning development into a [...]

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_view.dart';
import 'theme_mode.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return ValueListenableBuilder(
      valueListenable: themeMode,
      builder: (context, value, child) => MaterialApp(
        title: 'Widgets Easier Demo',
        themeMode: value,
        theme: ThemeData(
          colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
          useMaterial3: true,
        ),
        darkTheme: ThemeData.dark(
          useMaterial3: true,
        ),
        home: const HomeView(title: 'Demos'),
      ),
    );
  }
}
7
likes
0
pub points
69%
popularity

Publisher

unverified uploader

Widgets Easier is an open-source Flutter component library that comes with multiple pre-built UI components. It aims to make development faster, simpler, and more efficient, turning development into a pleasant experience.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_easy_animations, flutter_svg, gap

More

Packages that depend on widgets_easier