Skip to content

Instantly share code, notes, and snippets.

@vaygeth89
Created October 16, 2021 04:21
Show Gist options
  • Save vaygeth89/923c62a9c9aa3551314087f4383fcee6 to your computer and use it in GitHub Desktop.
Save vaygeth89/923c62a9c9aa3551314087f4383fcee6 to your computer and use it in GitHub Desktop.
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