Flutterを使って方位コンパスのアプリを開発しようとしています。
https://itnext.io/build-a-compass-app-in-flutter-b49a78aa951d
上記のサイトを参考に開発しているのですが、
Dart
1 String get _readout => _heading.toStringAsFixed(0) + '°'; 2 3 4 void initState() { 5 super.initState(); 6 FlutterCompass.events.listen(_onData); 7 } 8 9 void _onData(double x) => setState(() { _heading = x; });
.listen(_onData);でエラーが起きてしまいます。どうすればいいでしょうか?
エラー内容は、
error: The argument type 'void Function(double)' can't be assigned to the parameter type 'void Function(CompassEvent)?'. (argument_type_not_assignable at [file] lib/main.dart:49)
error: The method 'listen' can't be unconditionally invoked because the receiver can be 'null'. (unchecked_use_of_nullable_value at [file] lib/main.dart:49)
の2つです。
コード全体は
Dart
1import 'package:flutter/material.dart'; 2import 'package:geolocator/geolocator.dart'; 3import 'package:flutter_compass/flutter_compass.dart'; 4 5void main() { 6 runApp(MyApp()); 7} 8 9class MyApp extends StatelessWidget { 10 // This widget is the root of your application. 11 12 Widget build(BuildContext context) { 13 14 return MaterialApp( 15 title: 'アプリ名', 16 theme: ThemeData( 17 18 primarySwatch: Colors.blue, 19 ), 20 home: MyHomePage(title: '名前'), 21 ); 22 } 23} 24 25class MyHomePage extends StatefulWidget { 26 MyHomePage({Key? key, required this.title}) : super(key: key); 27 28 final String title; 29 30 31 _MyHomePageState createState() => _MyHomePageState(); 32} 33 34 35class _MyHomePageState extends State<MyHomePage>with SingleTickerProviderStateMixin { 36 37 double _heading = 0; 38 39 String get _readout => _heading.toStringAsFixed(0) + '°'; 40 41 42 void initState() { 43 super.initState(); 44 FlutterCompass.events.listen(_onData); 45 } 46 47 void _onData(double x) => setState(() { _heading = x; }); 48 49 50 51 52 Widget build(BuildContext context) { 53 return Scaffold( 54 appBar: AppBar( 55 title: Text(widget.title), 56 ), 57 body: Center( 58 child: Column( 59 children: [ 60 Text("あ"), 61 Text("変数"), 62 Text("変数"), 63 ], 64 ), 65 ), 66 ); 67 } 68} 69
です。 投稿のために一部変更と削除をしています。
あなたの回答
tips
プレビュー