29 lines
727 B
Dart
29 lines
727 B
Dart
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(),
|
|
);
|
|
}
|
|
}
|