Skip to content

Instantly share code, notes, and snippets.

@maffan91
Created September 15, 2019 09:34
Show Gist options
  • Save maffan91/e9dc033704c44ffd3bba133847a94916 to your computer and use it in GitHub Desktop.
Save maffan91/e9dc033704c44ffd3bba133847a94916 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class Profile extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Profile'),
),
body: Container(
child: Center(
child: Text('Profile Page'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment