Created
March 7, 2020 08:01
-
-
Save zafarivaev/6e28f4031dc0e522a2033d15f17b18d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class ProfileWidget extends StatefulWidget { | |
@override | |
_ProfileWidgetState createState() => _ProfileWidgetState(); | |
} | |
class _ProfileWidgetState extends State<ProfileWidget> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text('Profile'), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment