mirror of
https://github.com/rjNemo/bmi_calculator_app
synced 2026-06-06 02:16:41 +00:00
14 lines
297 B
Dart
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"),
|
|
);
|
|
}
|
|
}
|