flutter_any_logo 1.0.5 flutter_any_logo: ^1.0.5 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...
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,
],
),
),
),
);
}
}