Simple navigation menu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Hydroxycarbamide 2022-05-08 16:06:57 +02:00
parent 0df8df88ab
commit 6eb6f9809e
4 changed files with 62 additions and 89 deletions

View 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
View 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'),
);
}
}