flutter_any_logo 1.0.4 copy "flutter_any_logo: ^1.0.4" to clipboard
flutter_any_logo: ^1.0.4 copied to clipboard

All logos are included in this package to provide the largest logo library in flutter. It covers, fashion. Sports, Entertainment, SocialMedia etc...

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_any_logo/flutter_logo.dart';
import 'package:flutter_any_logo/gen/assets.gen.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
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Center(
          child: GridView.count(
            crossAxisCount: 5,
            children: [
              ...AnyLogo.daily.values
                  .map((AssetGenImage e) => e.image())
                  .toList(),
            ],
          ),
        ),
      ),
    );
  }
}
40
likes
0
points
181
downloads

Publisher

verified publisherjordyhers.com

Weekly Downloads

All logos are included in this package to provide the largest logo library in flutter. It covers, fashion. Sports, Entertainment, SocialMedia etc...

Repository (GitHub)
View/report issues

Funding

Consider supporting this project:

patreon.com

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on flutter_any_logo