flutter_weather_forecast 1.2.0 copy "flutter_weather_forecast: ^1.2.0" to clipboard
flutter_weather_forecast: ^1.2.0 copied to clipboard

A custom weather forecast widget for Turkey.Weather data provided by the General Directorate of Meteorology.

flutter_weather_forecast #

A weather forecast widget for Turkey.Weather data provided by the General Directorate of Meteorology.

Table of contents #

Demo #

Installation #

dependencies:
  flutter_weather_forecast: ^1.1.2
copied to clipboard

Using #

import 'package:flutter/material.dart';
import 'package:flutter_weather_forecast/flutter_weather_forecast.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Weather Forecast by @coskuncay'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: SingleChildScrollView(
        child: Column(
          children: const [
            WeatherForecast(),
            WeatherForecast(
              stationNo: '32',
            ),
            WeatherForecast(
              stationNo: '34',
            ),
            WeatherForecast(
              stationNo: '36',
            ),
            WeatherForecast(
              stationNo: '01',
            ),
            WeatherForecast(
              stationNo: '43',
            ),
          ],
        ),
      ),
    );
  }
}
copied to clipboard

WeatherForecast #

Name Type Default
stationNo String required
keyFontSize double 13
valueFontSize double 11
statusFontSize double 16
weatherFontSize double 26
timeFontSize double 13
refreshIconSize double 20
imageScale double .8
containerHeight double ScreenHeight * .15
borderColor Color Color(0XFFACAEBA)
keyColor Color Color(0XFFACAEBA)
valueColor Color Colors.black
weatherColor Color Colors.black
timeColor Color Color(0XFFACAEBA)
backgroundColor Color Colors.white
statusColor Color Colors.black
verticalPadding double 8
horizontalPadding double 8

License #

MIT Copyright (c) 2022, Emre Coşkunçay

14
likes
140
points
27
downloads

Publisher

verified publisherjustec.dev

Weekly Downloads

2024.10.05 - 2025.04.19

A custom weather forecast widget for Turkey.Weather data provided by the General Directorate of Meteorology.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http

More

Packages that depend on flutter_weather_forecast