Frontend first draft
This commit is contained in:
12
frontend/pweb/lib/pages/dashboard/organization/button.dart
Normal file
12
frontend/pweb/lib/pages/dashboard/organization/button.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
|
||||
class OrganizationButton extends StatelessWidget {
|
||||
const OrganizationButton({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => IconButton(
|
||||
icon: Icon(Icons.person),
|
||||
onPressed: null,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user