flutter_any_logo 1.1.1 copy "flutter_any_logo: ^1.1.1" to clipboard
flutter_any_logo: ^1.1.1 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';

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.values,
            ],
          ),
        ),
      ),
    );
  }
}
copied to clipboard
40
likes
150
points
183
downloads

Publisher

verified publisherjordyhers.com

Weekly Downloads

2024.09.09 - 2025.03.24

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

Repository (GitHub)

Documentation

API reference

Funding

Consider supporting this project:

patreon.com

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on flutter_any_logo