battle_search_overlay 0.0.2
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.
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(),
);
}
}