1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-23 23:07:53 +01:00
Rongjian Zhang efe0126bdb build: migrate to NNBD
closes #136
2021-05-16 15:16:35 +08:00

33 lines
823 B
Dart

import 'package:flutter/material.dart';
import 'package:git_touch/models/theme.dart';
import 'package:git_touch/widgets/link.dart';
import 'package:provider/provider.dart';
class UserName extends StatelessWidget {
final String? login;
final String prefix;
UserName(this.login, this.prefix);
@override
Widget build(BuildContext context) {
final theme = Provider.of<ThemeModel>(context);
return LinkWidget(
url: '/$prefix/$login',
child: Container(
// padding: EdgeInsets.all(2),
decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(4)),
),
child: Text(
login!,
style: TextStyle(
fontWeight: FontWeight.w600,
color: theme.palette.primary,
),
),
),
);
}
}