Q&A
3강
JSon to Dart null safe사이트에서 conver to dart로 변경을 한 소스이면 에러가 나는것 같습니다. 안드로이드 스튜디오에서 json to dart로 변경 후 photo_widget.dart에서 아래와 같이 변경 하니 에러가 나지 않습니다. 아래와 같이 하고 진행해도 괜찮을까요? import 'package:flutter/material.dart' ; import 'package:image_search/model/photo.dart' ; class PhotoWidget extends StatelessWidget { final Photo photo ; const PhotoWidget ( { Key? key , required this . photo , } ) : super ( key: key ) ; @override Widget build ( BuildContext context ) { return Container ( decoration: BoxDecoration ( borderRadius: const BorderRadius . all ( Radius . circular ( 16.0 ) ) , image: DecorationImage ( fit: BoxFit. cover , image: NetworkImage ( photo . previewURL ! ) , ) , ) , ) ; } }
- Likes
- 0
- Comments
- 2
- Viewcount
- 319

