adguard-home-manager/lib/screens/home/top_items.dart
Juan Gilsanz Polo b270a4bcbf More UI changes
2022-10-21 12:38:04 +02:00

113 lines
No EOL
3.2 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:adguard_home_manager/screens/top_items/top_items.dart';
class TopItems extends StatelessWidget {
final String type;
final String label;
final List<Map<String, dynamic>> data;
const TopItems({
Key? key,
required this.type,
required this.label,
required this.data,
}) : super(key: key);
@override
Widget build(BuildContext context) {
final width = MediaQuery.of(context).size.width;
Widget rowItem(Map<String, dynamic> item) {
return Padding(
padding: const EdgeInsets.symmetric(
horizontal: 20,
vertical: 8
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
SizedBox(
width: width-100,
child: Text(
item.keys.toList()[0],
overflow: TextOverflow.ellipsis,
style: const TextStyle(
fontSize: 16
),
),
),
Text(item.values.toList()[0].toString())
],
),
);
}
return SizedBox(
child: Column(
children: [
Text(
label,
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.w500
),
),
const SizedBox(height: 20),
if (data.isEmpty) Padding(
padding: const EdgeInsets.only(
bottom: 20,
top: 10
),
child: Text(
AppLocalizations.of(context)!.noItems,
style: const TextStyle(
fontSize: 16,
color: Colors.grey
),
),
),
if (data.isNotEmpty) rowItem(data[0]),
if (data.length >= 2) rowItem(data[1]),
if (data.length >= 3) rowItem(data[2]),
if (data.length >= 4) rowItem(data[3]),
if (data.length >= 5) rowItem(data[4]),
if (data.length > 5) ...[
const SizedBox(height: 20),
Padding(
padding: const EdgeInsets.only(right: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
TextButton(
onPressed: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => TopItemsScreen(
type: type,
title: label,
)
)
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(AppLocalizations.of(context)!.viewMore),
const SizedBox(width: 10),
const Icon(
Icons.arrow_forward,
size: 20,
)
],
)
),
],
),
),
const SizedBox(height: 10),
]
],
),
);
}
}