22 lines
552 B
Dart
22 lines
552 B
Dart
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);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Repositories', style: TextStyle(color: lightColorScheme.onPrimaryContainer)),
|
|
backgroundColor: lightColorScheme.primaryContainer,
|
|
elevation: 0,
|
|
),
|
|
body: Container(
|
|
child: Text('A')
|
|
),
|
|
);
|
|
}
|
|
}
|