Files
IIITB_Menu/lib/views/about.dart
2024-10-20 12:12:32 +05:30

22 lines
518 B
Dart

import 'package:flutter/material.dart';
class AboutPage extends StatelessWidget {
const AboutPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text("About Page")),
body: const Column(
children: [
Image(image: AssetImage("assets/plate.png")),
Text(
"IIIT Bangalore Unofficial Mess Menu",
style: TextStyle(fontSize: 50),
)
],
),
);
}
}