thermostat 1.1.5 copy "thermostat: ^1.1.5" to clipboard
thermostat: ^1.1.5 copied to clipboard

Thermostat widget for Flutter projects.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Column(
        children: [
          Row(
            mainAxisAlignment: MainAxisAlignment.center,
            children: const [
              Expanded(
                child: Thermostat(
                  maxVal: 78,
                  minVal: 66,
                  curVal: 68,
                  setPoint: 73,
                ),
              ),
            ],
          ),
        ],
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}
6
likes
110
pub points
64%
popularity

Publisher

unverified uploader

Thermostat widget for Flutter projects.

Repository (GitHub)
View/report issues

Documentation

API reference

License

AFL-3.0 (LICENSE)

Dependencies

cupertino_icons, flutter

More

Packages that depend on thermostat