Scrollable time chart in Flutter
An amazing time chart in Flutter. Plus, following this project is a great way to sharpen your flutter skills.
Contents
Inside the App: Chart Types
TimeChart
This enables the user to use the time chart with the following UI.
AmountChart
This enables the user to use the amount chart with the following UI.
Getting Started
1 – Depend on it
Add it to your package’s pubspec.yaml file. The same way as in, A complete animation widget for rotation with flutter.
dependencies: time_chart: ^0.1.0-nullsafety.1
2 – Install it
Install packages from the command line
flutter packages get
3 – Usage
Just input your DateTimeRange
list to data:
argument. The list must be sorted. First data is latest, last data is oldest. And set the ViewMode
.
Example
import 'package:flutter/material.dart'; import 'package:time_chart/time_chart.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // Data must be sorted. final data = [ DateTimeRange( start: DateTime(2021,2,24,23,15), end: DateTime(2021,2,25,7,30), ), DateTimeRange( start: DateTime(2021,2,22,1,55), end: DateTime(2021,2,22,9,12), ), DateTimeRange( start: DateTime(2021,2,20,0,25), end: DateTime(2021,2,20,7,34), ), DateTimeRange( start: DateTime(2021,2,17,21,23), end: DateTime(2021,2,18,4,52), ), DateTimeRange( start: DateTime(2021,2,13,6,32), end: DateTime(2021,2,13,13,12), ), DateTimeRange( start: DateTime(2021,2,1,9,32), end: DateTime(2021,2,1,15,22), ), DateTimeRange( start: DateTime(2021,1,22,12,10), end: DateTime(2021,1,22,16,20), ), ]; @override Widget build(BuildContext context) { final sizedBox = const SizedBox(height: 16); return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('Time chart example app')), body: SingleChildScrollView( child: Padding( padding: const EdgeInsets.all(16.0), child: Column( children: [ const Text('Weekly time chart'), TimeChart( data: data, viewMode: ViewMode.weekly, ), sizedBox, const Text('Monthly time chart'), TimeChart( data: data, viewMode: ViewMode.monthly, ), sizedBox, const Text('Weekly amount chart'), TimeChart( data: data, chartType: ChartType.amount, viewMode: ViewMode.weekly, barColor: Colors.deepPurple, ), sizedBox, const Text('Monthly amount chart'), TimeChart( data: data, chartType: ChartType.amount, viewMode: ViewMode.monthly, barColor: Colors.deepPurple, ), ], ), ), ), ), ); } }
Languages Supported
English
Korean
You can also use korean language by Internationalizing Flutter apps.
GitHub Repository
If you want to follow this project more closely, here is a link to the github page: https://github.com/jja08111/time_chart