Files
MWClash/lib/fragments/dashboard/traffic_usage.dart

96 lines
2.6 KiB
Dart
Raw Normal View History

2024-04-30 23:38:49 +08:00
import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/widgets/widgets.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class TrafficUsage extends StatelessWidget {
const TrafficUsage({super.key});
Widget getTrafficDataItem(
BuildContext context,
IconData iconData,
TrafficValue trafficValue,
) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.max,
children: [
Flexible(
flex: 1,
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Icon(
iconData,
size: 18,
),
const SizedBox(
width: 8,
),
Flexible(
flex: 1,
child: Text(
trafficValue.showValue,
style: context.textTheme.labelLarge?.copyWith(fontSize: 18),
maxLines: 1,
),
),
],
),
),
Text(
trafficValue.showUnit,
style: context.textTheme.labelMedium?.toLight,
2024-04-30 23:38:49 +08:00
),
],
);
}
@override
Widget build(BuildContext context) {
return CommonCard(
onPressed: () {},
2024-04-30 23:38:49 +08:00
info: Info(
label: appLocalizations.trafficUsage,
iconData: Icons.data_saver_off,
),
child: Selector<AppFlowingState, Traffic>(
selector: (_, appFlowingState) => appFlowingState.totalTraffic,
builder: (_, totalTraffic, __) {
final upTotalTrafficValue = totalTraffic.up;
final downTotalTrafficValue = totalTraffic.down;
2024-04-30 23:38:49 +08:00
return Padding(
padding: const EdgeInsets.all(16).copyWith(top: 0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Flexible(
flex: 1,
child: getTrafficDataItem(
context,
Icons.arrow_upward,
upTotalTrafficValue,
2024-04-30 23:38:49 +08:00
),
),
const SizedBox(
height: 4,
),
Flexible(
flex: 1,
child: getTrafficDataItem(
context,
Icons.arrow_downward,
downTotalTrafficValue,
2024-04-30 23:38:49 +08:00
),
),
],
),
);
},
),
);
}
}