Skip to content

Commit

Permalink
Fix: 抜けていた処理を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Mar 30, 2024
1 parent 847b820 commit b26fc50
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/backend/mobile/sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,10 @@ export const api: Sandbox = {
);
},
vuexReady() {
SplashScreen.hide();
// 1フレーム遅らせることで、真っ白の画面が表示されるのを防ぐ。
requestAnimationFrame(() => {
SplashScreen.hide();
});
},
async getSetting(key) {
const configManager = await getConfigManager();
Expand Down

0 comments on commit b26fc50

Please sign in to comment.