Moved edit button
Some checks failed
Build Flutter Web and Docker Image for Local Registry / Build Flutter Web App (push) Failing after 21s
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:
parent
44c964b889
commit
89c1134a85
@ -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',
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user