import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:git_touch/models/auth.dart'; import 'package:git_touch/models/theme.dart'; import 'package:git_touch/scaffolds/common.dart'; import 'package:git_touch/utils/utils.dart'; import 'package:github/github.dart'; import 'package:provider/provider.dart'; class GhIssueFormScreen extends StatefulWidget { final String owner; final String name; GhIssueFormScreen(this.owner, this.name); @override _GhIssueFormScreenState createState() => _GhIssueFormScreenState(); } class _GhIssueFormScreenState extends State { var _title = ''; var _body = ''; @override Widget build(BuildContext context) { final theme = Provider.of(context); return CommonScaffold( title: Text('Submit an issue'), body: Column( children: [ Padding( padding: CommonStyle.padding, child: CupertinoTextField( style: TextStyle(color: theme.palette.text), placeholder: 'Title', onChanged: (v) { setState(() { _title = v; }); }, ), ), Padding( padding: CommonStyle.padding, child: CupertinoTextField( style: TextStyle(color: theme.palette.text), placeholder: 'Body', onChanged: (v) { setState(() { _body = v; }); }, maxLines: 10, ), ), CupertinoButton.filled( child: Text('Submit'), onPressed: () async { final slug = RepositorySlug(widget.owner, widget.name); final res = await context .read() .ghClient .issues .create(slug, IssueRequest(title: _title, body: _body)); await theme.push( context, '/github/${widget.owner}/${widget.name}/issues/${res.number}', replace: true, ); }, ), ], ), ); } }