tora-muscle / 1weekPDCA

このアプリは一週間をより有意義なものにするために一週間単位で生活を振り返ることができるアプリです
MIT License
0 stars 0 forks source link

🐛 アイコン初回タップ時にバネのようなプルプルアニメーションになる #11

Closed tora-muscle closed 1 year ago

tora-muscle commented 1 year ago

🎫 関連課題

✨ 実現したいこと

▼ 現象動画

https://user-images.githubusercontent.com/111550856/218390376-18335259-d797-4295-a756-47f852f1dd1a.MP4

アプリ起動後、アイコンタップ時にバネのようにアイコンがはねる現象の修正

👀 備考

tora-muscle commented 1 year ago

🔧 修正済み

原因

▼ 修正前

withAnimation(.spring(response: 0.05, dampingFraction: 0.05, blendDuration: 0.05)) {
                                            self.isBig = true
                                        }

▼ 修正後

withAnimation(.linear(duration: 0.05)) {
        self.isBig = true
    }

✅ 動作確認

https://user-images.githubusercontent.com/111550856/218397006-cc12a9f9-4397-47ee-9a21-60a6fef53bd4.mov

▼ 検証環境 iOS16.2 iPhone 14 Pro(simulator)

tora-muscle commented 1 year ago

マージしたので完了する