blob: 36499c2494439314d5548001f69e7d1827d567ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import 'package:badge/control/mock_scanner_controller.dart';
import 'package:badge/scan_page.dart';
import 'package:flutter/material.dart';
class BadgeApp extends StatelessWidget {
const BadgeApp({super.key});
@override
Widget build(BuildContext context) {
final selectedScanner = MockScannerController();
return MaterialApp(
title: 'Scanner',
theme: ThemeData(
// This is the theme of your application.
//
// TRY THIS: Try running your application with "flutter run". You'll see
// the application has a purple toolbar. Then, without quitting the app,
// try changing the seedColor in the colorScheme below to Colors.green
// and then invoke "hot reload" (save your changes or press the "hot
// reload" button in a Flutter-supported IDE, or press "r" if you used
// the command line to start the app).
//
// Notice that the counter didn't reset back to zero; the application
// state is not lost during the reload. To reset the state, use hot
// restart instead.
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: ScanPage(title: 'Badge Scanner', deviceScanner: selectedScanner),
);
}
}
|