news_api_flutter_package 1.2.0 news_api_flutter_package: ^1.2.0 copied to clipboard
Flutter package for accessing News API. (https://newsapi.org/)
import 'package:example/screens/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "News API Example Project",
home: HomePage(),
);
}
}