Skip to content

Commit

Permalink
docs: fix plugin syntax (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
vonovak authored Jul 10, 2024
1 parent 44e23a8 commit 6a355b1
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions docs/android-styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,25 @@ Make changes as documented below and then run the following commands to see the
{
"expo": {
"plugins": [
"@react-native-community/datetimepicker",
{
"android": {
"datePicker": {
"colorAccent": {
"light": "#FF5722"
[
"@react-native-community/datetimepicker",
{
"android": {
"datePicker": {
"colorAccent": {
"light": "#FF5722"
},
"textColorPrimary": {
"light": "#FF5722"
}
},
"textColorPrimary": {
"light": "#FF5722"
"timePicker": {
"background": {"light": "#FF5722", "dark": "#383838"},
"numbersBackgroundColor": {"light": "#FF5722", "dark": "#383838"}
}
},
"timePicker": {
"background": {"light": "#FF5722", "dark": "#383838"},
"numbersBackgroundColor": {"light": "#FF5722", "dark": "#383838"}
}
}
}
]
]
}
}
Expand Down

0 comments on commit 6a355b1

Please sign in to comment.