mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-18 19:41:33 -05:00
14 lines
281 B
Dart
14 lines
281 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class IndexPage extends StatelessWidget {
|
||
|
const IndexPage({super.key});
|
||
|
static const path = '/';
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Scaffold(
|
||
|
body: Center(child: Text("Index Page")),
|
||
|
);
|
||
|
}
|
||
|
}
|