mirror of
https://github.com/theindianappguy/FlutterNewsApp.git
synced 2025-08-06 19:43:52 +08:00
20 lines
464 B
Dart
20 lines
464 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:news_app_api/views/homepage.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
primaryColor: Colors.white,
|
|
),
|
|
home: HomePage(),
|
|
);
|
|
}
|
|
}
|