flutter_element_plus 0.1.3 copy "flutter_element_plus: ^0.1.3" to clipboard
flutter_element_plus: ^0.1.3 copied to clipboard

A comprehensive Flutter UI library offering customizable, reusable widgets for building modern, responsive applications.

example/lib/main.dart

// example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'routes/app_pages.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      title: 'Flutter Element Demo App',
      color: Colors.white,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      initialRoute: AppPages.initial,
      getPages: AppPages.routes,
    );
  }
}
3
likes
0
points
722
downloads

Publisher

verified publisherflutter-element.com

Weekly Downloads

A comprehensive Flutter UI library offering customizable, reusable widgets for building modern, responsive applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_colorpicker, flutter_syntax_view, http, intl, url_launcher

More

Packages that depend on flutter_element_plus