bmi_calculator_app/lib/profile.dart
2021-07-06 10:07:46 +02:00

14 lines
297 B
Dart

import 'package:flutter/material.dart';
class ProfilePage extends StatelessWidget {
static const routeName = "/profile";
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Profile"),
),
body: Text("Hey"),
);
}
}