Drawer Navigation using Material 3 in Jetpack Compose | by Saqib | Sep, 2023
Explaining Material3 APIs for Navigation Drawer As mentioned before Material 3 provides explicit Apis for Drawer Navigation, first we will see in brief what those APIs are and later will implement them. The main Composable provided by Material3 is ModelNavigationDrawer mentioned below. Let’s see important…
Build, Sign and Create Release build using Github Actions | by Saqib | Aug, 2023
5. Github workflows Everything is available to create Github workflow. 5.1 Trigger Event We want to trigger the workflow whenever code is pushed to the main branch. 5.2 Permission to workflow We want to give permission to workflow in order to create Release over Github…
Android Lint workflow using Github Actions | by Saqib | Jul, 2023
Android Lint workflow using Github Actions Lets create workflow which will run lint code inspector on every pull request created on main branch and when code is pushed to main branch. Create a .github folder and then workflows folder inside like that .github/workflows . We…