File tree Expand file tree Collapse file tree
android/src/main/java/com/lodev09/truesheet/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,3 +133,14 @@ jobs:
133133 - name : Build example for iOS
134134 run : |
135135 yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"
136+
137+ build-status :
138+ runs-on : ubuntu-latest
139+ needs : [build-android, build-ios]
140+ if : always()
141+ steps :
142+ - name : Check build status
143+ run : |
144+ if [[ "${{ needs.build-android.result }}" == "failure" || "${{ needs.build-ios.result }}" == "failure" ]]; then
145+ exit 1
146+ fi
Original file line number Diff line number Diff line change @@ -21,10 +21,7 @@ interface TrueSheetKeyboardObserverDelegate {
2121 * Tracks keyboard height and notifies delegate on changes.
2222 * Uses WindowInsetsAnimationCompat on API 30+, ViewTreeObserver fallback on older versions.
2323 */
24- class TrueSheetKeyboardObserver (
25- private val targetView : View ,
26- private val reactContext : ThemedReactContext
27- ) {
24+ class TrueSheetKeyboardObserver (private val targetView : View , private val reactContext : ThemedReactContext ) {
2825
2926 var delegate: TrueSheetKeyboardObserverDelegate ? = null
3027
You can’t perform that action at this time.
0 commit comments