52 lines
1.2 KiB
Dart
52 lines
1.2 KiB
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:git_touch/models/theme.dart';
|
|
import 'package:git_touch/utils/utils.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'link.dart';
|
|
|
|
class EntryItem extends StatelessWidget {
|
|
final int count;
|
|
final String text;
|
|
final String url;
|
|
|
|
EntryItem({
|
|
@required this.count,
|
|
@required this.text,
|
|
this.url,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
return Expanded(
|
|
child: Link(
|
|
url: url,
|
|
child: Container(
|
|
padding: EdgeInsets.symmetric(vertical: 14),
|
|
child: Column(
|
|
children: <Widget>[
|
|
Text(
|
|
numberFormat.format(count),
|
|
style: TextStyle(
|
|
fontSize: 17,
|
|
fontWeight: FontWeight.w600,
|
|
color: theme.palette.text,
|
|
),
|
|
),
|
|
Text(
|
|
text,
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
color: theme.palette.secondaryText,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|