You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that activity_main.xml has CollapsingToolbarLayout which means it will be shown on every fragment, which is usually not what we want (e.g. SplashFragment, LoginFragment, PhotoFragment and MapsFragment don't need to have toolbar at all). It would be better to move CollapsingToolbarLayout to fragment_main.xml. NestedScrollView is a parent of FragmentContainerView. Scrolling behavior is also something that should be decided per each fragment.
The text was updated successfully, but these errors were encountered:
@brimanning@julianfalcionelli what do you think?
I would need Rocket logo in vector graphic + the background image or Lottie animation for the splash screen. Who can provide these resources?
Yeah, that sounds good to me. It probably applies to 95% of our apps, so I'd say go for it. Here's an SVG logo for you, hopefully it converts to a vector drawable easy enough.
General idea is to add more realistic flow to this app.
My suggestion is to add:
I've noticed that
activity_main.xml
hasCollapsingToolbarLayout
which means it will be shown on every fragment, which is usually not what we want (e.g. SplashFragment, LoginFragment, PhotoFragment and MapsFragment don't need to have toolbar at all). It would be better to moveCollapsingToolbarLayout
tofragment_main.xml
.NestedScrollView
is a parent ofFragmentContainerView
. Scrolling behavior is also something that should be decided per each fragment.The text was updated successfully, but these errors were encountered: