- 앨범 상세 화면 구현 (히어로, 티저, 수록곡, 컨셉포토 섹션) - 티저/컨셉포토 라이트박스 (photo_view 핀치줌) - flutter_downloader로 백그라운드 이미지 다운로드 - modal_bottom_sheet로 앨범 소개 다이얼로그 - 뒤로가기 두 번 눌러 종료 기능 - 앱 아이콘 변경 (fromis_9 로고) - 모든 아이콘 Lucide Icons로 통일 - 앨범 목록 애니메이션 최적화 (스크롤 시 애니메이션 제거) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
795 B
CMake
25 lines
795 B
CMake
#
|
|
# Generated file, do not edit.
|
|
#
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
|
permission_handler_windows
|
|
url_launcher_windows
|
|
)
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
|
)
|
|
|
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
|
|
|
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
|
|
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
|
|
endforeach(plugin)
|
|
|
|
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
|
|
endforeach(ffi_plugin)
|