Ana Krulec
Ana Krulec
I see the following error: ``` 2022-06-28 14:52:15.680 23489-23559/com.mycopilot.copilotapp E/AndroidRuntime: FATAL EXCEPTION: DefaultDispatcher-worker-1 Process: com.mycopilot.copilotapp, PID: 23489 java.lang.NullPointerException at com.mycopilot.copilotapp.today.calendar.CalendarFragment.getBinding(CalendarFragment.kt:61) at com.mycopilot.copilotapp.today.calendar.CalendarFragment.access$getBinding(CalendarFragment.kt:48) at com.mycopilot.copilotapp.today.calendar.CalendarFragment$onViewCreated$4.invoke(CalendarFragment.kt:99) at com.mycopilot.copilotapp.today.calendar.CalendarFragment$onViewCreated$4.invoke(CalendarFragment.kt:94) at com.kizitonwose.calendarview.CalendarView$setupAsync$1$1.invokeSuspend(CalendarView.kt:707) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)...
I've noticed that this error has come back although I'm using the suggested solution. This happens if I navigate away from the main fragment -- for example when I've detected...
I'm running into the same issues. Any resolution? Thank you
At second 6 the backwards scroll appears, and if you look at a date, it changes from July 10th to July 3rd (at second 7), but the calendar doesn't scroll,...
How would I figure that out? I am still using the old Android Views for the app, and this is just a ComposeView that is part of the today screen's...
I get an error when trying to run it on device (composable not found -- probably because I have modules, and maybe because my app is still mostly set up...
I did find this in the main activity, but removing it didn't help the symptom: binding.drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED)
I think we have hit the nail on the head. Do you have a recommended flow for the following: - There is a screen that has a week calendar on...
I have realized that I'm missing the part where we only take into account the ! scrolling actions like here: `.filter { scrolling -> !scrolling }` That mostly solves the...
After digging in a little more, this is what I came up with. I admit, the previous solution was mostly just a direct translation from view's based view. ``` @Composable...