aboutsummaryrefslogtreecommitdiff
path: root/lib/pages/Home.dart
blob: 32b87296c6b5c99130f7c2092296d371c06c19ce (plain) (blame)
1
2
3
4
5
6
7
8
9
import 'package:flutter/material.dart';

class HomeView extends StatelessWidget {
  @override
  Widget build(BuildContext ctx) {
    return Text('Home');
  }
}