theming!!!

This commit is contained in:
zoe 2022-07-03 00:03:10 +02:00
parent 839bb0bbde
commit c63f062640
12 changed files with 118 additions and 63 deletions

View file

@ -1,5 +1,9 @@
import 'package:flutter/material.dart';
Widget Timeline() {
return Center(child: Text("Home"));
Widget timeline(context) {
return Padding(
padding: const EdgeInsets.all(24),
child: Column(
children: [],
));
}