Skip to content
Snippets Groups Projects

Home page chaitanya

Merged Chaitanya Mangra requested to merge home_page_Chaitanya into Deggendorf_App_1.0
2 files
+ 28
7
Compare changes
  • Side-by-side
  • Inline
Files
2
import 'package:flutter/material.dart';
import '../../main.dart';
/*
profile Page
*/
class Profile extends StatelessWidget {
const Profile({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Konto'),
actions: <Widget>[
IconButton(onPressed: null, icon: Icon(Icons.settings))
],
backgroundColor: Colors.brown,
),
body: const Center(
child: Text("Diese Seite wurde noch nicht entwickelt!!!")),
);
}
}
Loading