13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
import { StatusBar, Style } from '@capacitor/status-bar'
|
|
|
|
export default defineNuxtPlugin({
|
|
name: 'status-bar-color',
|
|
enforce: 'pre',
|
|
hooks: {
|
|
'app:created': function () {
|
|
StatusBar.setStyle({ style: Style.Light })
|
|
StatusBar.setBackgroundColor({ color: '#ffffff' })
|
|
},
|
|
},
|
|
})
|