This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ITCS-4155/lib/main.dart
2020-02-07 14:37:16 -05:00

18 lines
316 B
Dart

import 'package:flutter/material.dart';
import 'home_widget.dart';
void main() => runApp(App());
class App extends StatelessWidget{
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'UNCC Athletics',
home: Home(),
);
}
}