73 lines
2.0 KiB
Dart
73 lines
2.0 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
import 'CollapseDrawer.dart';
|
||
|
|
||
|
class DrawerItem extends StatelessWidget {
|
||
|
const DrawerItem(
|
||
|
{Key? key, required this.dta, this.endText, required this.collapsed, required this.active, required this.onTap})
|
||
|
: super(key: key);
|
||
|
final ItemData dta;
|
||
|
final String? endText;
|
||
|
final bool collapsed;
|
||
|
final bool active;
|
||
|
final void Function() onTap;
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return InkWell(
|
||
|
onTap: onTap,
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsets.only(left: 9, top: 7, bottom: 7, right: 9),
|
||
|
child: ClipRRect(
|
||
|
borderRadius: BorderRadius.circular(10),
|
||
|
child: Container(
|
||
|
color: active ? const Color.fromRGBO(255,255,255,.25) : Colors.transparent,
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsets.only(left: 9, top: 7, bottom: 7, right: 9),
|
||
|
child: Row(
|
||
|
children: [
|
||
|
Icon(
|
||
|
dta.icon,
|
||
|
size: 26,
|
||
|
color: const Color.fromRGBO(255, 255, 255, .75),
|
||
|
),
|
||
|
if (!collapsed) ...[
|
||
|
const SizedBox(
|
||
|
width: 10,
|
||
|
),
|
||
|
Text(
|
||
|
dta.name,
|
||
|
style:
|
||
|
const TextStyle(color: Color.fromRGBO(255, 255, 255, .85)),
|
||
|
),
|
||
|
Expanded(child: Container()),
|
||
|
Text(
|
||
|
endText ?? "",
|
||
|
style:
|
||
|
const TextStyle(color: Color.fromRGBO(255, 255, 255, .45)),
|
||
|
),
|
||
|
const SizedBox(
|
||
|
width: 15,
|
||
|
)
|
||
|
]
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class ItemData {
|
||
|
String name;
|
||
|
IconData icon;
|
||
|
|
||
|
ItemData(this.name, this.icon);
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
return 'ItemData{name: $name, icon: $icon}';
|
||
|
}
|
||
|
}
|