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

outdated

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_custom_carousel_slider: ^1.0.0

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',
            ),
          ],
        ),
      ),
    );
  }
}

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
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

13
likes
0
pub points
54%
popularity

Publisher

verified publisherjustec.dev

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on flutter_weather_forecast