TetraStats/lib/widgets/stat_sell_num.dart

76 lines
2.5 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
class StatCellNum extends StatelessWidget {
2023-06-27 20:55:59 +00:00
const StatCellNum(
{super.key,
required this.playerStat,
required this.playerStatLabel,
required this.isScreenBig,
this.alertWidgets,
this.fractionDigits});
final num playerStat;
final String playerStatLabel;
final bool isScreenBig;
2023-06-27 20:55:59 +00:00
final List<Widget>? alertWidgets;
final int? fractionDigits;
@override
Widget build(BuildContext context) {
2023-06-27 20:55:59 +00:00
NumberFormat f =
NumberFormat.decimalPatternDigits(decimalDigits: fractionDigits ?? 0);
return Column(
children: [
Text(
f.format(playerStat),
style: TextStyle(
fontFamily: "Eurostile Round Extended",
fontSize: isScreenBig ? 32 : 24,
),
),
2023-06-27 20:55:59 +00:00
alertWidgets == null
? Text(
playerStatLabel,
textAlign: TextAlign.center,
style: const TextStyle(
fontFamily: "Eurostile Round",
fontSize: 16,
),
)
: TextButton(
onPressed: () {
2023-06-27 20:55:59 +00:00
showDialog(
context: context,
builder: (BuildContext context) => AlertDialog(
title: Text(playerStatLabel,
style: const TextStyle(
fontFamily: "Eurostile Round Extended")),
content: SingleChildScrollView(
child: ListBody(children: alertWidgets!),
),
actions: <Widget>[
TextButton(
child: const Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
)
],
));
},
2023-06-27 20:55:59 +00:00
style: ButtonStyle(
padding: MaterialStateProperty.all(EdgeInsets.zero)),
child: Text(
playerStatLabel,
textAlign: TextAlign.center,
style: const TextStyle(
fontFamily: "Eurostile Round",
fontSize: 16,
),
)),
],
);
}
}