Skip to content

Commit

Permalink
fix: divider color not working on old architecture (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
henninghall committed Apr 12, 2024
1 parent cf16f6b commit 9f78002
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import com.facebook.react.uimanager.ThemedReactContext;
import com.facebook.react.uimanager.annotations.ReactPropGroup;
import com.henninghall.date_picker.DatePickerModule;
import com.henninghall.date_picker.props.DividerColorProp;
import com.henninghall.date_picker.props.Is24hourSourceProp;
import com.henninghall.date_picker.props.DateProp;
import com.henninghall.date_picker.props.LocaleProp;
Expand Down Expand Up @@ -41,7 +42,7 @@ public PickerView createViewInstance(ThemedReactContext context) {

@ReactPropGroup(names = { DateProp.name, ModeProp.name, LocaleProp.name, MaximumDateProp.name,
MinimumDateProp.name, TextColorProp.name, TimezoneOffsetInMinutesProp.name, MinuteIntervalProp.name,
Is24hourSourceProp.name
Is24hourSourceProp.name, DividerColorProp.name
})
public void setProps(PickerView view, int index, Dynamic value) {
DatePickerManagerImpl.setProps(view, index, value, getClass());
Expand Down

0 comments on commit 9f78002

Please sign in to comment.