battle_search_overlay 0.0.2 copy "battle_search_overlay: ^0.0.2" to clipboard
battle_search_overlay: ^0.0.2 copied to clipboard

A Flutter package that helps you build beautiful animated Searching Opponent overlays for battle-style apps.

example/lib/main.dart

import 'package:example/battle.dart';
import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Battle Search Overlay Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: Battle(),
    );
  }
}
10
likes
160
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that helps you build beautiful animated Searching Opponent overlays for battle-style apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, flutter

More

Packages that depend on battle_search_overlay