Tutorial shows how to add “top bar” title app name to an Android Compose activity. Create function topBar() copy snippet below, change string “My Important Dates”.

@Composable
fun topBar() {
TopAppBar(title = {
Text(
text = "My Important Dates",
style = MaterialTheme.typography.h6,
textAlign = TextAlign.Center
)
})
}
Call…
How to push your local code to a new GitHub repo:
- Create a repo on GitHub.
- Follow GitHub instructions.
OR do below commands:
echo "# AndroidComposeAdMobSDK" >> README.md
git init
git add…
Haven’t watched all the videos, but my favorite topics this year was Android Compose and all the Security improvement changes coming soon.
Cool Android permissions changes for Android 12 Sdk 31, no more asking user permissions to access pictures, cool new Photo Picker API
Compose session:
What’s new…