Skip to content

Commit cf738b5

Browse files
mmehmetAliIzciWesley
authored andcommitted
Add valueFocused styles for dropdown and ref selector
1 parent 7391ddd commit cf738b5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

styles/native/ts/core/widgets/dropdown.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export const DropDown: DropDownType = {
4646
...TextBox.validationMessage,
4747
},
4848
/* New dropdown styles start */
49+
valueFocused: {
50+
// All TextStyle properties are allowed
51+
},
4952
valueContainer: {
5053
// All ViewStyle properties & rippleColor are allowed
5154
flexDirection: "row",

styles/native/ts/core/widgets/referenceselector.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { border, contrast, font, input } from "../variables";
2-
import { DropDown } from "./dropdown";
2+
import { DropDown, DropDownVertical } from "./dropdown";
33
import { TextBox, TextBoxVertical } from "./textbox";
44
import { DropDownType } from "../../types/widgets";
55
/*
@@ -48,6 +48,9 @@ export const ReferenceSelector: DropDownType = {
4848
...TextBox.validationMessage,
4949
},
5050
/* New dropdown styles start */
51+
valueFocused: {
52+
// All TextStyle properties are allowed
53+
},
5154
valueContainer: {
5255
// All ViewStyle properties & rippleColor are allowed
5356
flexDirection: "row",

0 commit comments

Comments
 (0)