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:
Shreyas Thirumalai
2021-01-06 10:22:58 +05:30
committed by GitHub
parent 4679ca10ee
commit 1ac27f4853
22 changed files with 551 additions and 20 deletions

View File

@@ -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(