-
Notifications
You must be signed in to change notification settings - Fork 926
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add custom app delegate for tint color configuration (#2579)
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
const { withAppDelegate } = require("@expo/config-plugins") | ||
const { mergeContents } = require("@expo/config-plugins/build/utils/generateCode") | ||
|
||
const withFollowAppDelegate = (config) => { | ||
return withAppDelegate(config, async (config) => { | ||
let newContents = config.modResults.contents | ||
|
||
newContents = mergeContents({ | ||
src: newContents, | ||
anchor: "// You can add your custom initial props in the dictionary below.", | ||
newSrc: ` | ||
[UIView appearanceWhenContainedInInstancesOfClasses:@[[UIAlertController class]]].tintColor = | ||
[UIColor colorWithRed:255.0/255.0 | ||
green:92.0/255.0 | ||
blue:0.0/255.0 | ||
alpha:1.0]; | ||
self.window.tintColor = [UIColor colorWithRed:255.0/255.0 | ||
green:92.0/255.0 | ||
blue:0.0/255.0 | ||
alpha:1.0]; | ||
`, | ||
offset: 3, | ||
tag: "custom tint color", | ||
comment: " //", | ||
}).contents | ||
|
||
config.modResults.contents = newContents | ||
|
||
return config | ||
}) | ||
} | ||
|
||
module.exports = withFollowAppDelegate |