Table of contents
My app on the Google Playstore
GitHub code
Introduction
- This series will be an informal demonstration of any problems I face or any observations I make while developing Android apps. Each blog post in this series will be unique and separate from the others, so feel free to look around.
What we are talking about
- If you are like me and are still in that stage where your mobile applications seem a little off. Then this blog post is for you. I will be quickly discussing two simple things you can do to make your applications feel more professional
1) Call to actions
- The first change you can make to your app to make it feel more professional is to change how you display your
call to actions
. What I mean bycall to action
is anytime your user needs to do something, like create a data set or buy a subscription. I have noticed on big tech applications(like TikTok), all the call to actions animate from the bottom. This might sound a little confusing so let me show you through a diagram:
- Notice how the red section is show to move up and down from the bottom. The more urgent the call to action, the more of the user's screen you should take up.
- The most crucial part of this is the smooth animation from the bottom up and back down again. To achieve this in Android's jetpack compose you can use the ModalBottomSheetLayout. My implementation of the
ModalBottomSheetLayout
can been seen on GitHub, Here. It's not very pretty but it works well enough for right now. - I am not sure how to implement this in IOS, but I am sure the team at Apple has something similar to
ModalBottomSheetLayout
.
2) Navigation
The second change you can make to your app to make it feel more professional is animate your navigation. As you user navigates through your app make sure to animate the page transition. Now the implementation of this will vary quite different depending on how you implement your navigation. What is important is when you keep your continuity when navigating. When you navigate away from the main screen animate the transition left to right and reverse when the user traverses back to the main screen.
These are 2 simple things you can do to make your application look a little more professional
Conclusion
- Thank you for taking the time out of your day to read this blog post of mine. If you have any questions or concerns please comment below or reach out to me on Twitter.
Top comments (0)