phase3: improve arg-bang handler (allow ! in chains, ; terminator). 574->440
This commit is contained in:
@@ -141,7 +141,7 @@ class MobileViewTicketState extends State<MobileViewTicket> {
|
||||
Container(
|
||||
width: double.maxFinite,
|
||||
padding: EdgeInsets.only(top: 16.0, bottom: 16.0, left: 16.0, right: 16.0),
|
||||
child: showGalleryImages(mainContext, ticket.issue!.files),
|
||||
child: showGalleryImages(mainContext, ticket.issue!.files!),
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(
|
||||
@@ -670,7 +670,7 @@ class MobileViewTicketState extends State<MobileViewTicket> {
|
||||
}
|
||||
|
||||
void _submit() {
|
||||
final FormState form = _formKey.currentState;
|
||||
final FormState form = _formKey.currentState!;
|
||||
if (form.validate()) {
|
||||
setState(() {
|
||||
onSubmitting = true;
|
||||
|
||||
Reference in New Issue
Block a user