sidebar widget

This commit is contained in:
hannathkadher
2024-09-26 14:49:19 +04:00
parent b40998558e
commit fe3525d255
4 changed files with 67 additions and 30 deletions

View File

@ -0,0 +1,6 @@
class Community {
final String name;
final List<Community>? children; // Sub-communities
Community({required this.name, this.children});
}