12 lines
277 B
Dart
12 lines
277 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HistoryScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text('History')),
|
|
body: Center(child: Text('History Screen Content')),
|
|
);
|
|
}
|
|
}
|