- Configurable server URL (default: pedshub.com) - Android + iOS platforms initialized - Dark theme matching quiz app (#0f172a) - Status bar and navigation bar color matched - Auto-redirect on subsequent launches - App ID: com.pedshub.quiz, App Name: PedsHub Build: cd mobile && npx cap sync && npx cap open android Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
764 B
JavaScript
29 lines
764 B
JavaScript
var capacitorSplashScreen = (function (exports, core) {
|
|
'use strict';
|
|
|
|
const SplashScreen = core.registerPlugin('SplashScreen', {
|
|
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.SplashScreenWeb()),
|
|
});
|
|
|
|
class SplashScreenWeb extends core.WebPlugin {
|
|
async show(_options) {
|
|
return undefined;
|
|
}
|
|
async hide(_options) {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
var web = /*#__PURE__*/Object.freeze({
|
|
__proto__: null,
|
|
SplashScreenWeb: SplashScreenWeb
|
|
});
|
|
|
|
exports.SplashScreen = SplashScreen;
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
return exports;
|
|
|
|
})({}, capacitorExports);
|
|
//# sourceMappingURL=plugin.js.map
|