This commit is contained in:
2024-12-01 16:14:24 +01:00
commit b10492493b
13 changed files with 754 additions and 0 deletions

20
lib/main.dart Normal file
View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
void main() {
runApp(const Resume());
}
class Resume extends StatelessWidget {
const Resume({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Resume',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
);
}
}