find_the_word 1.0.3 copy "find_the_word: ^1.0.3" to clipboard
find_the_word: ^1.0.3 copied to clipboard

A word search game package built with Flutter and Flame. Features include customizable word lists, animations, and game over callbacks.

example/lib/main.dart

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

import 'screens/game_screen.dart';


void main() {
  WidgetsFlutterBinding.ensureInitialized();
  SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Word Search Game',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        brightness: Brightness.dark,
        scaffoldBackgroundColor: const Color(0xFF1a1a2e),
      ),
      home: GameScreen(),
    );
  }
}
6
likes
0
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

A word search game package built with Flutter and Flame. Features include customizable word lists, animations, and game over callbacks.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flame, flutter, google_fonts

More

Packages that depend on find_the_word