ez_widget_2 0.0.6 copy "ez_widget_2: ^0.0.6" to clipboard
ez_widget_2: ^0.0.6 copied to clipboard

This plugin contains popular widgets that are commonly used in Flutter projects.

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();

  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Test'),
        ),
      ),
    );
  }
}
1
likes
120
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

This plugin contains popular widgets that are commonly used in Flutter projects.

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, flutter, flutter_svg, fluttertoast, image, loading_indicator, plugin_platform_interface

More

Packages that depend on ez_widget_2

Packages that implement ez_widget_2