#flutter #widget #device
#флаттер #виджет #устройство
Вопрос:
У меня есть вызываемый виджет, который PhotosList
представляет собой StatelessWidget, который я пытаюсь отправить $_deviceId
этому виджету, но я уже отправляю данные в виджет, и я не хочу расстраивать виджет.
class PhotosList extends StatelessWidget {
final Photo photos;
FlutterRadioPlayer _flutterRadioPlayer = new FlutterRadioPlayer();
PhotosList({Key key, this.photos}) : super(key: key);
@override
Widget build(BuildContext context) {
return GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 1,
// childAspectRatio: MediaQuery.of(context).size.width /
// (MediaQuery.of(context).size.height / 4), //childAspectRatio: 200,
),
scrollDirection: Axis.horizontal,
itemCount: photos.data.length,
itemBuilder: (context, index) {
return RaisedButton(
padding: const EdgeInsets.all(0),
textColor: Colors.white,
color: Colors.black,
onPressed: () async { await _flutterRadioPlayer.setUrl(photos.data[index].listenlive, "true");
},
child: CachedNetworkImage(
imageUrl: photos.data[index].imageurl,
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Icon(Icons.error),
),
);
// return Image.network(photos.data[index].imageurl, width: 80.0, height: 80.0,);
},
);
}
}
Для его загрузки мы используем следующее.
FutureBuilder<Photo>(
future: fetchPhotos(http.Client()),
builder: (context, snapshot) {
if (snapshot.hasError) print(snapshot.error);
return snapshot.hasData
? Expanded(child: PhotosList(photos: snapshot.data))
: Center(child: CircularProgressIndicator());
},
),
Который работает — но теперь я хочу отправить $_DeviceID с этим запросом.
Я уже установил $_deviceId
. Насколько я понимаю, мне нужно отправить его следующим образом:
PhotosList(photos: snapshot.data, uuid: $_deviceId))
а затем в PhotosList поместить
class PhotosList extends StatelessWidget {
final Photo photos;
final String uuid;
FlutterRadioPlayer _flutterRadioPlayer = new FlutterRadioPlayer();
PhotosList({Key key, this.photos}) : super(key: key);
@override
Widget build(BuildContext context) {
return GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 1,
// childAspectRatio: MediaQuery.of(context).size.width /
// (MediaQuery.of(context).size.height / 4), //childAspectRatio: 200,
),
scrollDirection: Axis.horizontal,
itemCount: photos.data.length,
itemBuilder: (context, index) {
return RaisedButton(
padding: const EdgeInsets.all(0),
textColor: Colors.white,
color: Colors.black,
onPressed: () async { await _flutterRadioPlayer.setUrl(photos.data[index].listenlive '?uuid' uuid, "true");
},
child: CachedNetworkImage(
imageUrl: photos.data[index].imageurl,
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Icon(Icons.error),
),
);
// return Image.network(photos.data[index].imageurl, width: 80.0, height: 80.0,);
},
);
}
}
Ошибка, которую я получил, была
Error: No named parameter with the name 'uuid'.
? Expanded(child: PhotosList(photos: snapshot.data,uuid:$_deviceId))
Ответ №1:
вы должны сделать это так : PhotosList({Key key, this.photos, this.uuid}) : super(key: key);