📉
Flutterで折線グラフを作ってみた!
今回は、ドキュメントを見ながら設定を変えてみた!
Flutterでは、グラフを作ることができるfl_charと呼ばれているライブラリがあります。
今回は、それを使って折れ線グラフを作る勉強をしました。この場所を設定を変えると線の色や幅が変わるのが、わかって以前と比べて、これは数学がわからないとできないのではないかという苦手意識は無くなった気がします😅
こちらが、元になったコードです
main.dart
import 'dart:async';
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: LineChartSample(),
);
}
}
class LineChartSample extends StatefulWidget {
const LineChartSample({Key? key}) : super(key: key);
State<LineChartSample> createState() => _LineChartSampleState();
}
class _LineChartSampleState extends State<LineChartSample> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('LineCharts'),
),
body: LineChart(
// 折線グラフ
LineChartData(
// 折れ線グラフデータ
// read about it in the LineChartData section
maxX: 8, // x 軸の最大 x を取得します。null の場合、値は入力 lineBars から読み取られます
maxY: 8, // y 軸の最大 y を取得します。null の場合、値は入力 lineBars から読み取られます
minX: 0, // x 軸の最小 x を取得します。null の場合、値は入力 lineBars から読み取られます
minY: 0, // y 軸の最小 y を取得します。null の場合、値は入力 lineBars から読み取られます
lineBarsData: [
// 線を表示するためのデータ
LineChartBarData(
// この中に線の色やサイズを書く!
isCurved: false,
barWidth: 3.0, // 線の幅
color: Colors.green[300], // 線の色
spots: [
FlSpot(0, 5), // 左が横で、右が高さの数値
FlSpot(1, 2),
FlSpot(2, 8),
FlSpot(3, 4),
FlSpot(4, 2),
FlSpot(5, 6),
FlSpot(6, 0),
FlSpot(7, 8),
FlSpot(8, 5),
])
]),
swapAnimationDuration: Duration(milliseconds: 150),
swapAnimationCurve: Curves.linear,
),
);
}
}
Riverpodで書き換えてみたコードはこんな感じです
サンプルのアプリは、StatefulWidgeでできているので、Riverpodで書き換えたら、どうなるのか試してみたくてやってみました。
数値を変更しても画面が変化しているので、今のところ特別な設定は必要ないようです🤔
やったことは、double型の数値をStateProviderを使って表示できるか実験しただけですけどね😅
pubspec.yaml
name: charts_app
description: A new Flutter project.
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
environment:
sdk: ">=2.17.6 <3.0.0"
# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
# consider running `flutter pub upgrade --major-versions`. Alternatively,
# dependencies can be manually updated by changing the version numbers below to
# the latest version available on pub.dev. To see which dependencies have newer
# versions available, run `flutter pub outdated`.
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
flutter_riverpod: ^1.0.4
dev_dependencies:
flutter_test:
sdk: flutter
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
fl_chart: ^0.55.1
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages
X軸とY軸のデータをProviderで管理してみた。
X軸と、Y軸の最小値と最大値を他のファイルに書いて管理してます。
同じページにコードを全部書きたくなかったので...
Provider/provider.dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
// グラフの数値はdouble型なので、doubleを指定する
final minXProvider = StateProvider<double>((ref) => 0);
final minYProvider = StateProvider<double>((ref) => 0);
final maxXProvider = StateProvider<double>((ref) => 8);
final maxYProvider = StateProvider<double>((ref) => 8);
こちらが、Riverpodを使ってStatefulWidgetを使わなくてもグラフが描画できるようにした、ソースコードです。
main.dart
import 'dart:async';
import 'package:charts_app/Provider/provider.dart';
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
import 'dart:math' as math;
import 'package:flutter_riverpod/flutter_riverpod.dart';
void main() {
runApp(ProviderScope(child: const MyApp()));
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: LineChartSample(),
);
}
}
class LineChartSample extends ConsumerWidget {
const LineChartSample({Key? key}) : super(key: key);
Widget build(BuildContext context, WidgetRef ref) {
// double型のX軸・Y軸のProviderを呼び出す!
final maxX = ref.watch(maxXProvider.state).state;
final maxY = ref.watch(maxYProvider.state).state;
final minX = ref.watch(minXProvider.state).state;
final minY = ref.watch(minYProvider.state).state;
return Scaffold(
appBar: AppBar(
title: Text('LineChartsRiverpod'),
),
body: LineChart(
// 折線グラフ
LineChartData(
// 折れ線グラフデータ
maxX: maxX, // x 軸の最大 x を取得します。null の場合、値は入力 lineBars から読み取られます
maxY: maxY, // y 軸の最大 y を取得します。null の場合、値は入力 lineBars から読み取られます
minX: minX, // x 軸の最小 x を取得します。null の場合、値は入力 lineBars から読み取られます
minY: minY, // y 軸の最小 y を取得します。null の場合、値は入力 lineBars から読み取られます
lineBarsData: [
// 線を表示するためのデータ
LineChartBarData(
// この中に線の色やサイズを書く!
isCurved: true,
barWidth: 3.0, // 線の幅
color: Colors.blue[300], // 線の色
spots: [
FlSpot(0, 5), // 左が横で、右が高さの数値
FlSpot(1, 2),
FlSpot(2, 8),
FlSpot(3, 4),
FlSpot(4, 2),
FlSpot(5, 6),
FlSpot(6, 0),
FlSpot(7, 8),
FlSpot(8, 5),
])
]),
swapAnimationDuration: Duration(milliseconds: 150),
swapAnimationCurve: Curves.linear,
),
);
}
}
最後に
GithubのReadmeを見ながら調べましたが、YouTubeで折れ線グラフを作っているのを見ないと、ここまで作れなかったですね!
気づいことは、コードの保管機能が効かないことがあるみたいで、Githubのコードを正しく書くか、コピペすればエラーも消えて、問題は解決できたようです。
Discussion