Bottom Navigation Destination

This commit is contained in:
2021-03-18 01:21:17 +02:00
parent 6bf2b46059
commit b3eb71b4e8
2 changed files with 101 additions and 47 deletions
+28
View File
@@ -0,0 +1,28 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class ProfileView extends StatefulWidget {
@override
_ProfileViewState createState() => _ProfileViewState();
}
class _ProfileViewState extends State<ProfileView> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Mon Profil",
style: TextStyle(color: Colors.black),
),
leading: Builder(builder: (BuildContext context) {
return Padding(
padding: const EdgeInsets.only(left: 16),
child: Image.asset("assets/images/kiosque_logo.png"),
);
}),
),
body: Container(),
);
}
}