use_widgets 0.2.0
use_widgets: ^0.2.0 copied to clipboard
Make your app more alive with beautiful animated icons.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:use_widgets_example/home.dart';
void main() {
runApp(
MaterialApp(
title: 'Use Widgets Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const HomePage(),
),
);
}