This commit is contained in:
parent
6eb6f9809e
commit
511e8cda76
9 changed files with 204 additions and 40 deletions
|
@ -1,5 +1,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../resources/colors_schemes/lib_color_schemes.g.dart';
|
||||
|
||||
|
||||
class ReposPage extends StatelessWidget {
|
||||
const ReposPage({Key? key}) : super(key: key);
|
||||
|
@ -7,7 +9,14 @@ class ReposPage extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: Text('A'),
|
||||
appBar: AppBar(
|
||||
title: Text('Repositories', style: TextStyle(color: lightColorScheme.onPrimaryContainer)),
|
||||
backgroundColor: lightColorScheme.primaryContainer,
|
||||
elevation: 0,
|
||||
),
|
||||
body: Container(
|
||||
child: Text('A')
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue