以下のプログラムの
import 'package:weather_app/widgets/Weather.dart';
import 'package:weather_app/widgets/WeatherItem.dart';
この部分にエラーが起こりました。
ちなみにネットから拾ってきたプログラムです。
package名・ファイル名に誤りはありません。
するとwidgetsに原因があるのでしょうか。
Dart
1import 'package:flutter/material.dart'; 2 3import 'package:weather_app/widgets/Weather.dart'; 4import 'package:weather_app/widgets/WeatherItem.dart'; 5import 'package:weather_app/Weather.dart'; 6import 'package:weather_app/WeatherItem.dart'; 7 8void main() => runApp(new MyApp()); 9 10class MyApp extends StatelessWidget { 11 12 Widget build(BuildContext context) { 13 return MaterialApp( 14 title: 'Flutter Weather App', 15 theme: ThemeData( 16 primarySwatch: Colors.blue, 17 ), 18 home: Scaffold( 19 backgroundColor: Colors.blueGrey, 20 appBar: AppBar( 21 title: Text('Flutter Weather App'), 22 ), 23 body: Center( 24 child: Column( 25 mainAxisSize: MainAxisSize.min, 26 children: <Widget>[ 27 Expanded( 28 child: Column( 29 mainAxisAlignment: MainAxisAlignment.center, 30 children: <Widget>[ 31 Padding( 32 padding: const EdgeInsets.all(8.0), 33 child: Weather(), 34 ), 35 Padding( 36 padding: const EdgeInsets.all(8.0), 37 child: IconButton( 38 icon: new Icon(Icons.refresh), 39 tooltip: 'Refresh', 40 onPressed: () => null, 41 color: Colors.white, 42 ), 43 ), 44 ], 45 ), 46 ), 47 SafeArea( 48 child: Padding( 49 padding: const EdgeInsets.all(8.0), 50 child: Container( 51 height: 200.0, 52 child: ListView.builder( 53 itemCount: 10, 54 scrollDirection: Axis.horizontal, 55 itemBuilder: (context, index) => WeatherItem() 56 ), 57 ), 58 ), 59 ) 60 ] 61 ) 62 ) 63 ), 64 ); 65 } 66}
原因発見時にはご教授いただけますと幸いです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。