27 lines
709 B
Dart
27 lines
709 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:smoke_cess_app/service/settings_service.dart';
|
|
|
|
class ScannerPage extends StatelessWidget {
|
|
const ScannerPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
const Text('Hier taucht die Kamera zum Scannen auf'),
|
|
const SizedBox(height: 30),
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
textStyle: const TextStyle(fontSize: 20)),
|
|
onPressed: () {
|
|
loadSettings();
|
|
},
|
|
child: const Text('Read JSON'),
|
|
)
|
|
],
|
|
));
|
|
}
|
|
}
|