You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
487 B
25 lines
487 B
2 years ago
|
part of '../neon.dart';
|
||
2 years ago
|
|
||
|
class AccountSettingsTile extends SettingsTile {
|
||
|
const AccountSettingsTile({
|
||
|
required this.account,
|
||
|
this.color,
|
||
|
this.trailing,
|
||
2 years ago
|
this.onTap,
|
||
2 years ago
|
super.key,
|
||
|
});
|
||
|
|
||
|
final Account account;
|
||
|
final Color? color;
|
||
|
final Widget? trailing;
|
||
2 years ago
|
final VoidCallback? onTap;
|
||
2 years ago
|
|
||
|
@override
|
||
2 years ago
|
Widget build(final BuildContext context) => AccountTile(
|
||
|
account: account,
|
||
|
color: color,
|
||
|
trailing: trailing,
|
||
|
onTap: onTap,
|
||
2 years ago
|
);
|
||
|
}
|