notes/lib/drawer_item.dart
lukas-heiligenbrunner 0a987facc8 use fixed color values
add material animation to menu button
add draft of preview pages
2022-10-23 17:57:59 +02:00

76 lines
1.9 KiB
Dart

import 'package:flutter/material.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(0xff6e6e6e) : 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(0xffdbdbdb),
),
if (!collapsed) ...[
const SizedBox(
width: 10,
),
Text(
dta.name,
style: const TextStyle(color: Color(0xffe9e9e9)),
),
Expanded(child: Container()),
Text(
endText ?? '',
style: const TextStyle(color: Color(0xffafafaf)),
),
const SizedBox(
width: 15,
)
]
],
),
),
),
),
),
);
}
}
class ItemData {
String name;
IconData icon;
ItemData(this.name, this.icon);
@override
String toString() {
return 'ItemData{name: $name, icon: $icon}';
}
}