Files
dash-flutter/lib/screens/about.dart
philipmims bc0e5f1fea proj reorg into folders;
fixed provider implementation;
added TxnType radio picker
2022-11-12 00:18:08 -05:00

20 lines
550 B
Dart

import 'package:flutter/material.dart';
class AboutScreen extends StatelessWidget {
// change to AboutDialog
const AboutScreen(
{super.key}); //https://api.flutter.dev/flutter/material/AboutDialog-class.html
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('About Page'),
backgroundColor: const Color.fromARGB(255, 185, 47, 5),
),
body: const Center(
child: Text('About Page Text, Lorum Ipsum and whatnot.'),
));
}
}