Created
October 16, 2021 04:21
-
-
Save vaygeth89/923c62a9c9aa3551314087f4383fcee6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 UnprotectedProfilePage extends StatelessWidget { | |
const UnprotectedProfilePage({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text("Profile Page"), | |
actions: [IconButton(onPressed: () {}, icon: Icon(Icons.logout))], | |
), | |
body: Center(child: Text("My Profile page")), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment