davidlutta / NewsWiz

Simple Beautiful News app made using flutter
1 stars 0 forks source link

Contstan.dart #1

Closed mrsetia1 closed 4 years ago

mrsetia1 commented 4 years ago

can you include constant file?

davidlutta commented 4 years ago

import 'package:flutter/material.dart';

const String kBaseUrl="https://newsapi.org/v2/everything?q="; const String kApiKey = "&apiKey="; const TextStyle kDisplayTextStyle2 = TextStyle( fontSize: 40.0, color: Colors.black, fontWeight: FontWeight.w700 ); const TextStyle kDisplayTextStyle = TextStyle( fontSize: 40.0, color: Colors.white, fontWeight: FontWeight.w700 ); const TextStyle kAuthorTextStyle = TextStyle( fontSize: 20.0, color: Colors.white, fontWeight: FontWeight.normal ); const TextStyle kDescriptionTextStyle = TextStyle( fontSize: 15.0, color: Colors.white, fontWeight: FontWeight.normal );

That's all the code in the file make sure to insert your own api key from newsapi.org