thermometer_widget 0.1.0
thermometer_widget: ^0.1.0 copied to clipboard
A simple and customizable thermometer widget
Thermometer #
A simple and customizable widget to be used as a thermometer in Flutter.
Features #
This widget will create a thermometer. When widget is created inside a stateful widget and temperature is changed in set state method, then the liquid of thermometer animates from old to new temperature.
Getting started #
Installation #
Add the dependency to your pubspec.yaml:
dependencies:
thermometer_widget: ^0.1.0
And then run following command on terminal:
flutter pub get
Add the following import statement in the dart file you are going to use this widget:
import 'package:thermometer/thermometer.dart';
Constructor #
| Property | Default | Description |
|---|---|---|
| height | The height of thermometer. Width will automatically get 25% of it. | |
| duration | const Duration(milliseconds: 300) | The time duration of animation of liquid when temperature is changed. |
| temperatureC | The temperature of thermometer in Celsius. | |
| showScreenTemperatureInFahrenheit | false | To show the temperature on screen in Fahrenheit. |
| backgroundGradient | const LinearGradient(colors: [Colors.white, Color.fromARGB(255, 224, 224, 224)], stops: [0.3, 1.0], begin: Alignment.centerLeft, end: Alignment.centerRight,) | Gradient which will act as background (color) of thermometer. |
| textColor | const Color.fromARGB(255, 87, 87, 87) | Text color used inside the thermometer. |
| boundaryColor | const Color.fromARGB(255, 189, 189, 189) | Color of the thermometer boundary. |
| screenColor | const Color.fromARGB(255, 224, 224, 224) | Background color of the screen area. |
| tubeColor | Colors.white | Color of the thermometer tube. |
| screenTextColor | const Color.fromARGB(255, 66, 66, 66) | Color of the temperature text displayed on the screen. |
| readingLinesColor | Colors.black | Color of the small reading lines inside the thermometer. |
| veryFreezingTemperatureColor | const Color.fromARGB(255, 10, 66, 122) | Liquid color for very low (freezing) temperature range between -20°C and lesser temperature. |
| freezingTemperatureColor | const Color.fromARGB(255, 31, 135, 221) | Liquid color for low temperature range between -21°C and 0°C. |
| normalTemperatureColor | const Color.fromARGB(255, 50, 167, 54) | Liquid color for normal temperature range between 1°C and 10°C. |
| hotTemperatureColor | const Color.fromARGB(255, 219, 200, 22) | Liquid color for high temperature range between 11°C and 30°C. |
| veryHotTemperatureColor | const Color.fromARGB(255, 189, 32, 21) | Liquid color for very high (hot) temperature range between 31°C and greater temperature |
Usage Examples #
Example
Here is a basic example. It consists of thermometer widget and a button. On clicking button, the value of temperature changes and liquid animates from last to new temperature.
import 'package:flutter/material.dart';
import 'package:thermometer/thermometer.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: const MyHomePage(),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
double temp = -10.39;
int counter = 1;
List<double> temps = [-10.39, 40, 4.5, -39.33, 25.44,];
void _changeTemperature() {
setState(() {
temp = temps[counter];
counter++;
if (counter == 5) {
counter = 0;
}
});
}
@override
Widget build(BuildContext context) {
final Size(:height, :width) = MediaQuery.of(context).size;
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.grey,
title: Text(
'Custom Thermometer',
style: TextStyle(color: Colors.white),
),
),
body: Center(
child: Container(
padding: EdgeInsets.only(bottom: height * 0.1),
child: Thermometer(
height: 400,
temperatureC: temp,
),
),
),
floatingActionButton: FloatingActionButton(
backgroundColor: Colors.grey.shade50,
onPressed: _changeTemperature,
tooltip: 'Change Temperature',
child: Icon(Icons.star, color: Colors.grey.shade800),
),
);
}
}
