football_images 0.0.4 copy "football_images: ^0.0.4" to clipboard
football_images: ^0.0.4 copied to clipboard

Introducing a dynamic Flutter plugin designed to elevate your football experience! Our plugin seamlessly integrates into your app, offering a rich gallery of football images. Whether it's showcasing i [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:football_images/football_images.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatefulWidget {
  const HomePage({super.key});

  @override
  State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Plugin Example'),
      ),
      body: const FootballImages(),
    );
  }
}
4
likes
140
points
11
downloads

Publisher

verified publisheraakashrajbanshi.com.np

Weekly Downloads

Introducing a dynamic Flutter plugin designed to elevate your football experience! Our plugin seamlessly integrates into your app, offering a rich gallery of football images. Whether it's showcasing iconic moments, team celebrations, or player portraits, our plugin ensures your users stay engaged and captivated. With smooth navigation and high-quality imagery, immerse your audience in the thrilling world of football like never before!

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

carousel_slider, flutter

More

Packages that depend on football_images