1234567891011121314 |
- import 'package:flutter/material.dart';
- class ListPage extends StatelessWidget {
- const ListPage({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- backgroundColor: Theme.of(context).colorScheme.primaryContainer,
- body: Column(
- children: [Text('heh')],
- ));
- }
- }
|