본문 바로가기

FLUTTER203

Flutter DT_TOOLCHAIN_DIR는 LIBRARY_SEARCH_PATHS를 평가하는 데 사용할 수 없습니다. 대신 TOOLCHAIN_DIR을 사용하세요., DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead 질문 최신 Xcode 및 iOS 17 업데이트 후 플러터 앱을 실행하려고하면 다음 오류가 발생합니다. "DT_TOOLCHAIN_DIR는 LIBRARY_SEARCH_PATHS를 평가하는 데 사용할 수 없으며 TOOLCHAIN_DIR을 대신 사용하십시오." # Uncomment this line to define a global platform for your project # platform :ios, '11.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debu.. 2024. 1. 3.
Flutter 미래 빌더에서 여러 가지 방법을 사용할 수 있을까요?, Can I use multiple method on a future builder? 질문 @override Widget build(BuildContext context) { widget.groupid; widget.event_id; var futureBuilder = new FutureBuilder( future: _getAllTickets(), builder: (BuildContext context, AsyncSnapshot snapshot) { print(snapshot.connectionState); switch (snapshot.connectionState) { case ConnectionState.none: case ConnectionState.waiting: return new Text('...'); default: if (snapshot.hasError) return new.. 2023. 12. 18.
Flutter 플러터에서 둥근 모서리가 있는 캐시 이미지를 생성하세요., Create rounded cached image in Flutter 질문 네트워크에서 이미지를 가져오고 Flutter에서 캐시된 원형 이미지를 만들고 싶습니다. 네트워크에서 가져온 원형 이미지를 캐시하지 않는 코드를 찾았습니다. new Container( width:80.0, height: 80.0, decoration: new BoxDecoration( shape: BoxShape.circle, image: new DecorationImage( image: new NetworkImage('https://pbs.twimg.com/profile_images/945853318273761280/0U40alJG_400x400.jpg'), ), ), ), 이제 네트워크에서 이미지를 가져오고 캐시하고 표시하는 위젯을 찾았습니다. new CachedNetworkImage(imageU.. 2023. 12. 18.
Flutter 플러터 경고를 수정하는 방법: 당신의 플러터 애플리케이션은 오래된 버전을 사용하여 생성되었습니다., How to Fix Flutter Warning: Your Flutter application is created using an older version 질문 Flutter 앱을 실행하는 동안 다음 경고 메시지를 받고 있습니다. 어떻게 해결해야 할지 안내해주세요. 경고: Flutter 애플리케이션은 이전 버전의 Android 임베딩을 사용하여 생성되었습니다. Android 임베딩 v2를 선호합니다. 답변 flutter 2.10 때문에 여기에 오신 경우, 다음을 수행하세요: 다음을 변경하세요: 2023. 12. 18.