material_dan_kit 0.0.1 copy "material_dan_kit: ^0.0.1" to clipboard
material_dan_kit: ^0.0.1 copied to clipboard

a package

example/lib/main.dart

import 'package:flutter/material.dart';
import 'pages/start_game_page.dart';
import 'themes/app_themes.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Blackjack Game',
      theme: AppThemes.lightTheme,
      darkTheme: AppThemes.darkTheme,
      themeMode: ThemeMode.light,
      home: const StartGamePage(),
    );
  }
}