advanced_icon 0.1.2 copy "advanced_icon: ^0.1.2" to clipboard
advanced_icon: ^0.1.2 copied to clipboard

A flutter package that contains a collection of icon decoration tools (i.e. gradient, opacity) and icon transition features with cool animation effects.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_screen.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Animated Flutter Icon',
      theme: ThemeData(
        brightness: Brightness.dark,
        primaryColor: const Color(0xFF161B22),
        scaffoldBackgroundColor: const Color(0xFF212933),
        tabBarTheme: const TabBarTheme(
          unselectedLabelStyle: TextStyle(
            inherit: true,
            fontSize: 16.0,
            fontWeight: FontWeight.w600,
          ),
          labelStyle: TextStyle(
            inherit: true,
            fontSize: 16.0,
            fontWeight: FontWeight.w600,
          ),
        ),
      ),
      debugShowCheckedModeBanner: false,
      home: const HomeScreen(),
    );
  }
}
93
likes
160
points
78
downloads

Publisher

verified publisherdevtonium.com

Weekly Downloads

A flutter package that contains a collection of icon decoration tools (i.e. gradient, opacity) and icon transition features with cool animation effects.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on advanced_icon