mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Some basic styling
This commit is contained in:
23
app.config.ts
Normal file
23
app.config.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ExpoConfig } from '@expo/config'
|
||||
|
||||
export default (): ExpoConfig => ({
|
||||
name: 'mastodon-app',
|
||||
description: 'This is a description',
|
||||
slug: 'mastodon-app',
|
||||
privacy: 'hidden',
|
||||
version: '1.0.0',
|
||||
platforms: ['ios'],
|
||||
orientation: 'portrait',
|
||||
userInterfaceStyle: 'automatic',
|
||||
icon: './assets/icon.png',
|
||||
developmentClient: { silentLaunch: true },
|
||||
scheme: 'mastodonct',
|
||||
ios: {
|
||||
splash: {
|
||||
image: './assets/splash.png',
|
||||
resizeMode: 'contain',
|
||||
backgroundColor: '#ffffff'
|
||||
}
|
||||
},
|
||||
assetBundlePatterns: ['**/*']
|
||||
})
|
Reference in New Issue
Block a user