mirror of
https://github.com/git-touch/git-touch
synced 2025-03-05 19:57:42 +01:00
14 lines
284 B
Dart
14 lines
284 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class IssueScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(context) {
|
|
return CupertinoPageScaffold(
|
|
navigationBar: CupertinoNavigationBar(
|
|
middle: Text("issue"),
|
|
),
|
|
child: Text("issue"),
|
|
);
|
|
}
|
|
}
|