2020-05-06 17:40:36 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class AccountTile extends StatelessWidget {
|
|
|
|
AccountTile({
|
|
|
|
@required this.isCurrent,
|
|
|
|
@required this.accountName,
|
|
|
|
@required this.onTap
|
|
|
|
});
|
|
|
|
|
|
|
|
final bool isCurrent;
|
|
|
|
final String accountName;
|
|
|
|
final VoidCallback onTap;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-05-29 15:10:11 +00:00
|
|
|
final color = isCurrent ? Theme.of(context).accentTextTheme.subtitle.decorationColor : Colors.transparent;
|
|
|
|
final textColor = isCurrent ? Colors.blue : Theme.of(context).primaryTextTheme.title.color;
|
2020-05-06 17:40:36 +00:00
|
|
|
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: onTap,
|
|
|
|
child: Container(
|
|
|
|
height: 77,
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24),
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
color: color,
|
|
|
|
child: Text(
|
|
|
|
accountName,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: textColor,
|
|
|
|
decoration: TextDecoration.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|