Files
resume/lib/pages/landing_page.dart
2024-12-01 16:27:22 +01:00

19 lines
417 B
Dart

import 'package:flutter/material.dart';
class LandingPage extends StatelessWidget {
const LandingPage({super.key});
static const String routeName = '/';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Landing'),
actions: [
TextButton(onPressed: () {}, child: const Text('Source Code')),
],
),
);
}
}