mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-30 19:37:35 -05:00
feat(gitee): issues, issue, pullRequests screens (#144)
* feat: gitee pulls, issue screens * add action button - issue screen * remove unnecessary comment * feat: gitee create issue in repo * feat: commenting in issue screen * fix: prepend '#' to subtitle props
This commit is contained in:
committed by
GitHub
parent
4679ca10ee
commit
1ac27f4853
@@ -5,14 +5,15 @@ import 'package:provider/provider.dart';
|
||||
|
||||
class UserName extends StatelessWidget {
|
||||
final String login;
|
||||
final String prefix;
|
||||
|
||||
UserName(this.login);
|
||||
UserName(this.login, this.prefix);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final theme = Provider.of<ThemeModel>(context);
|
||||
return Link(
|
||||
url: '/github/$login',
|
||||
url: '/$prefix/$login',
|
||||
child: Container(
|
||||
// padding: EdgeInsets.all(2),
|
||||
decoration: BoxDecoration(
|
||||
|
||||
Reference in New Issue
Block a user