Closures

Functional swift: All about Closures https://medium.com/@abhimuralidharan/functional-swift-all-about-closures-310bc8af31dd According to apple docs: Closures are self-contained blocks of functionality that can be passed around and used in your code. I tried to include all about closures here in this article. It’s a bit READ MORE

RxAndroid

https://code.tutsplus.com/tutorials/rxjava-for-android-apps-introducing-rxbinding-and-rxlifecycle–cms-28565 https://www.vokal.io/blog/reactive-forms-with-rxandroid https://gist.github.com/hzsweers/b9e25e244d59d7e3274b https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/ Adding TextWatcher on EditText using Rxjava and RxBinding https://placona.co.uk/building-a-beautifully-smart-form-in-android-using-rxjava/ https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/

getBoundsOnScreen(android.graphics.Rect)’ on a null object reference

getBoundsOnScreen(android.graphics.Rect)’ on a null object reference Set the hint on the TextInputLayout instead of the nested EditText. It wont crash. <android.support.design.widget.TextInputLayout android:id=”@+id/til1″ android:layout_width=”match_parent” android:layout_height=”wrap_content” android:hint=”Phone Number”> <EditText android:layout_width=”match_parent” android:layout_height=”wrap_content” android:id=”@+id/login_phone” android:inputType=”number” android:singleLine=”true” /> </android.support.design.widget.TextInputLayout> https://medium.com/@markchristopherng/a-new-year-a-new-os-upgrade-to-oreo-2f91783e159f Testing After doing the upgrade, READ MORE