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')), ], ), ); } }