We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public event(public interface)에 대한 명확한 분리
모든 컴포넌트에 대해 아래와 같이 구성
public extension BaseCalendar { var onChangeSelectedDate: Observable<Date> { return _onChangeSelectedDate.asObservable() } var selectedDate: Binder<Date> { return Binder(self) { [weak self] calendar, date in guard let self = self else { return } self.selectedDay = self.days.first { $0.date == date } self.updateSelectedDay() } } } public class BaseCalendar: UIView { // MARK: Event private let _onChangeSelectedDate = PublishSubject<Date>() ``` ## 📚 Remarks - x
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🔄 Reason for Refactoring
public event(public interface)에 대한 명확한 분리
♻️ Refactoring Plans
모든 컴포넌트에 대해 아래와 같이 구성
The text was updated successfully, but these errors were encountered: