Moved edit button
Some checks failed
Build Flutter Web and Docker Image for Local Registry / Build Flutter Web App (push) Failing after 21s

This commit is contained in:
whysman 2024-11-09 23:43:40 -05:00
parent 44c964b889
commit 89c1134a85

View File

@ -108,12 +108,6 @@ class StatusPageState extends State<StatusPage> {
height: 40, height: 40,
), ),
backgroundColor: Colors.blueAccent, backgroundColor: Colors.blueAccent,
actions: [
IconButton(
icon: const Icon(Icons.edit),
onPressed: widget.toggleProfile, // Open ProfileScreen overlay
),
],
), ),
body: StreamBuilder( body: StreamBuilder(
stream: controller.stream, stream: controller.stream,
@ -201,6 +195,11 @@ class StatusPageState extends State<StatusPage> {
_sendStatus(userId, userName, userLogo, 'is leaving'), _sendStatus(userId, userName, userLogo, 'is leaving'),
child: const Text('Leaving'), child: const Text('Leaving'),
), ),
IconButton(
icon: const Icon(Icons.edit, color: Colors.blueAccent),
onPressed: widget.toggleProfile,
tooltip: 'Edit Profile',
),
], ],
), ),
], ],