Simple navigation menu
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
0df8df88ab
commit
6eb6f9809e
4 changed files with 62 additions and 89 deletions
13
lib/page/actions_page.dart
Normal file
13
lib/page/actions_page.dart
Normal file
|
@ -0,0 +1,13 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
|
||||
class ActionPage extends StatelessWidget {
|
||||
const ActionPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: Text('B'),
|
||||
);
|
||||
}
|
||||
}
|
13
lib/page/repos_page.dart
Normal file
13
lib/page/repos_page.dart
Normal file
|
@ -0,0 +1,13 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
|
||||
class ReposPage extends StatelessWidget {
|
||||
const ReposPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: Text('A'),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue