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(context); return Expanded( child: Link( url: url, child: Container( padding: EdgeInsets.symmetric(vertical: 14), child: Column( children: [ Text( numberFormat.format(count), style: TextStyle( fontSize: 17, fontWeight: FontWeight.w600, color: theme.palette.text, ), ), Text( text, style: TextStyle( fontSize: 14, color: theme.palette.secondaryText, fontWeight: FontWeight.w500, ), ) ], ), ), ), ); } }