97 lines
3.2 KiB
Dart
97 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../model/menu.dart';
|
|
import '../../../utils/rive_utils.dart';
|
|
import 'info_card.dart';
|
|
import 'side_menu.dart';
|
|
|
|
class SideBar extends StatefulWidget {
|
|
const SideBar({super.key});
|
|
|
|
@override
|
|
State<SideBar> createState() => _SideBarState();
|
|
}
|
|
|
|
class _SideBarState extends State<SideBar> {
|
|
Menu selectedSideMenu = sidebarMenus.first;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SafeArea(
|
|
child: Container(
|
|
width: 288,
|
|
height: double.infinity,
|
|
decoration: const BoxDecoration(
|
|
color: Color(0xFF1A6B18),
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(30),
|
|
),
|
|
),
|
|
child: DefaultTextStyle(
|
|
style: const TextStyle(color: Colors.white),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const InfoCard(
|
|
name: "Abu Anwar",
|
|
bio: "YouTuber",
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 24, top: 32, bottom: 16),
|
|
child: Text(
|
|
"Browse".toUpperCase(),
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.titleMedium!
|
|
.copyWith(color: Colors.white70),
|
|
),
|
|
),
|
|
...sidebarMenus
|
|
.map((menu) => SideMenu(
|
|
menu: menu,
|
|
selectedMenu: selectedSideMenu,
|
|
press: () {
|
|
RiveUtils.chnageSMIBoolState(menu.rive.status!);
|
|
setState(() {
|
|
selectedSideMenu = menu;
|
|
});
|
|
},
|
|
riveOnInit: (artboard) {
|
|
menu.rive.status = RiveUtils.getRiveInput(artboard,
|
|
stateMachineName: menu.rive.stateMachineName);
|
|
},
|
|
))
|
|
.toList(),
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 24, top: 40, bottom: 16),
|
|
child: Text(
|
|
"History".toUpperCase(),
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.titleMedium!
|
|
.copyWith(color: Colors.white70),
|
|
),
|
|
),
|
|
...sidebarMenus2
|
|
.map((menu) => SideMenu(
|
|
menu: menu,
|
|
selectedMenu: selectedSideMenu,
|
|
press: () {
|
|
RiveUtils.chnageSMIBoolState(menu.rive.status!);
|
|
setState(() {
|
|
selectedSideMenu = menu;
|
|
});
|
|
},
|
|
riveOnInit: (artboard) {
|
|
menu.rive.status = RiveUtils.getRiveInput(artboard,
|
|
stateMachineName: menu.rive.stateMachineName);
|
|
},
|
|
))
|
|
.toList(),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|