Skip to content

πŸš€πŸ§¨πŸ“ Series of Tutorials to learn about Jetpack Compose with subjects Material Widgets, Layout, SubcomposeLayout, custom layouts, State, custom rememberable, recomposition, LaunchedEffect, side-effects, Gesture, Animation, Navigation, Canvas, UIs like whatsapp and others.

Notifications You must be signed in to change notification settings

CodeHunterDev/Jetpack-Compose-Tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Jetpack Compose Tutorials and Playground

πŸ€“ Overview

Series of Tutorials to learn about Jetpack Compose, Material Widgets, State, Animation, and Navigation. Easy to search in code and in app. Each chapter module contains it's own content in code. SearchBar can be used to search with a tag or description available for each tutorial.

Recommended section is under constructions for now, when finished it will get recommended tags using previous searches using a database, domain with ViewModel.




Tutorial Preview

1-1 Column, Row, Box, Modifiers


Create Row that adds elements in horizontal order, and Column that adds elements in vertical order.

β€’ Column
β€’ Row
β€’ Box
β€’ Modifier

1-2 Surface, Shape, Clickable


Create and modify Surface to draw background for Composables, add click action to any composable. Set weight or offset modifiers.

β€’ Surface
β€’ Shape
β€’ Clickable

Material Widgets

Tutorial Preview

2-1 Text


Create Text component with different properties such as color, background, font weight, family, style, spacing and others

β€’ Text
β€’ Row
β€’ FontStyle
β€’ Annotated String Hyperlink

2-2 Button, IconButton, FAB, Chip


Create button with text and/or with image, Floating Action Button or Chips. Modify properties of buttons including color, text, and click actions.

β€’ Button
β€’ IconButton
β€’ FloatingActionButton
β€’ Chip

2-3 TextField


Create TextField component with regular style or outlined. Set error, colors, state, icons, and IME actions.

β€’ TextField
β€’ OutlinedTextField
β€’ IME
β€’ Phone format VisualTransformation
β€’ Regex

2-4 Image


Create Image with image, vector resource or with Painter, set image and Content scales to fit, expand or shrink image. Change shape of Image or apply ColorFilter and PorterDuff modes.

β€’ Image
β€’ Canvas
β€’ Drawable
β€’ Bitmap

2-5 LazyColumn/Row/VerticalGrid


Vertical, horizontal grid lists with LazyColumn, LazyRow and LazyVerticalGrid. Use contentPadding set paddings for lists, verticalArrangement or horizontalArrangement for padding between items, rememberLazyListState to manually scroll.

β€’ LazyColumn(Vertical RecyclerView)
β€’ LazyRow(Horizontal RecyclerView
β€’ LazyVerticalGrid(GridLayout)
β€’ StickyHeaders

2-6 TopAppbar & Tab


TopAppbar with actions, overflow menus. Tabs with text only, image only and image+text with different background, divider, and indicators.

β€’ TopAppBar
β€’ Overflow menu
β€’ TabRow and Tab
β€’ Tab Indicator, Divider

2-7 BottomNavigation


Bottom navigation bars allow movement between primary destinations in an app. BottomNavigation should contain multiple BottomNavigationItems, each representing a singular destination.

β€’ BottomNavigation
β€’ BottomNavigationItem

2-8 BottomAppBar


A bottom app bar displays navigation and key actions at the bottom of screens.

β€’ BottomAppBar
β€’ Scaffold

2-9-1 Side Navigation


A backdrop appears behind all other surfaces in an app, displaying contextual and actionable content.

β€’ Scaffold
β€’ Side Navigation
β€’ DrawerState

2-9-2 ModalDrawer


Modal navigation drawers block interaction with the rest of an app’s content with a scrim. They are elevated above most of the app’s UI and don’t affect the screen’s layout grid.

β€’ ModalDrawer
β€’ DrawerState
β€’ Scaffold

2-10-1 BottomSheet


Create bottom sheet using BottomSheetScaffold and rememberBottomSheetScaffoldState, create modal bottom sheets.

β€’ BottomSheetScaffold
β€’ BottomSheetState
β€’ ModalBottomSheetLayout

2-10-4 BottomDrawer


BottomDrawer with BottomAppBar.

β€’ BottomDrawer
β€’ BottomAppBar
β€’ Scaffold

2-10-5 BackdropScaffold


Material Design backdrop. This component provides an API to put together several material components to construct your screen. For a similar component which implements the basic material design layout strategy with app bars, floating action buttons and navigation drawers, use the standard Scaffold. For similar component that uses a bottom sheet as the centerpiece of the screen, use BottomSheetScaffold.

2-11 Snackbar, Progress, Selection


Create Snackbars with various layouts and styling, Checkboxes with selectable text, tri state checkbox, grouped radio buttons and sliders.

β€’ SnackBar
β€’ ProgressIndicator
β€’ Checkbox
β€’ TriStateCheckbox
β€’ Switch
β€’ RadioButton
β€’ Slider
β€’ RangeSlider

2-12 Dialog, AlertDialog


Create Dialog, and AlertDialog with standard and custom layouts. Implement on dismiss logic and get result when dialog is closed.

β€’ AlertDialog
β€’ Dialog
β€’ DialogProperties

Layout

Tutorial Preview

3-1 Custom Modifier


Create custom layout using using layout, Measurable, Constraint, Placeable.

β€’ Custom Modifier
β€’ Measurable
β€’ Constraint
β€’ Placeable

3-2-1 Custom Layout


Create custom layout using using MeasurePolicy and use intrinsic dimensions.

β€’ Custom Layout
β€’ Measurable
β€’ Constraint
β€’ Placeable

3-3-1 Scope&ParenDataModifier


Add custom modifiers to Composable inside a custom layout using it's scope.

β€’ Custom Layout
β€’ Scope
β€’ ParentDataModifier
β€’ Measurable
β€’ Constraint
β€’ Placeable

3-4 BoxWithConstraints


BoxWithConstraints is a composable that defines its own content according to the available space, based on the incoming constraints or the current LayoutDirection.

β€’ BoxWithConstraints
β€’ Constraint

3-5 SubcomposeLayout


Subcompose layout which allows to subcompose the actual content during the measuring stage for example to use the values calculated during the measurement as params for the composition of the children.

β€’ SubcomposeLayout
β€’ Constraint
β€’ Measurable
β€’ Constraint
β€’ Placeable

3-6-1 Custom Chat Layouts1


Custom layout like whatsapp chat layout that moves time and message read status layout right or bottom based on message width.

β€’ Custom Layout
β€’ Measurable
β€’ Constraint
β€’ Placeable

3-6-2 Custom Chat SubcomposeLayout


Custom layout like whatsapp chat. Added quote and name tag resized to longest sibling using SubcomposeColumn from previous examples to have whole layout.

β€’ Custom Layout
β€’ SubcomposeLayout
β€’ Measurable
β€’ Constraint
β€’ Placeable

State

Tutorial Preview

4-1 Remember&MutableState


Remember and mutableState effect recomposition and states.

β€’ remember
β€’ State
β€’ Recomposition

4-2-1 Recomposition


How recomposition happens for flat or hierarchical designs when Composables are in separate functions or stacked together.

β€’ remember
β€’ State
β€’ Recomposition

4-2-2 Recomposition2


How hierarchy of Composables effects Smart Composition.

β€’ remember
β€’ Recomposition
β€’ State

4-4 Custom Remember


Create a custom remember and custom component to have badge that changes its shape based on properties set by custom rememberable.

β€’ remember
β€’ State
β€’ Recomposition
β€’ Custom Layout

4-5-1 SideEffect1


Use remember functions like rememberCoroutineScope, and rememberUpdatedState and side-effect functions such as LaunchedEffect and DisposableEffect.

β€’ remember
β€’ rememberCoroutineScope
β€’ rememberUpdatedState
β€’ LaunchedEffect
β€’ DisposableEffect

4-5-2 SideEffect2


Use SideEffect, derivedStateOf, produceState and snapshotFlow.

β€’ remember
β€’ SideEffect
β€’ derivedStateOf
β€’ produceStateOf
β€’ snapshotFlow

Gesture

Tutorial Preview

5-1 Clickable&InteractionSource


Use clickable modifier, Indication and InteractionSource.Indication to clip ripples, or create custom ripple effects.

β€’ clickable
β€’ Indication
β€’ rememberRipple
β€’ InteractionSource
β€’ pointerInput
β€’ pointerInteropFilter

5-2 Tap&Drag Gesture


Use PointerInput to listen press, tap, long press, drag gestures. detectTapGestures is used for listening for tap, longPress, doubleYap, and press gestures.

β€’ pointerInput
β€’ pointerInteropFilter
β€’ detectTapGestures
β€’ detectDragGestures
β€’ onPress
β€’ onDoubleTap

5-3 Transform Gestures


Use PointerInput to listen for detectTransformGesture to get centroid, pan, zoom and rotate params.

β€’ pointerInput
β€’ detectTransformGestures
β€’ centroid
β€’ pan
β€’ zoom

5-4-1 AwaitPointerEventScope1


Use AwaitPointerEventScope to get awaitFirstDown for down events, waitForUpOrCancellation for up events, and awaitPointerEvent for move events with pointers.

β€’ AwaitPointerEventScope
β€’ PointerInputChange
β€’ awaitFirstDown
β€’ waitForUpOrCancellation
β€’ awaitPointerEvent
β€’ awaitTouchSlopOrCancellation
β€’ awaitDragOrCancellation

5-4-3 Centroid, Zoom, Pan, Rotation


Use AwaitPointerEventScope to calculate centroid position and size, zoom, pan, and rotation.

β€’ AwaitPointerEventScope
β€’ centroid
β€’ pan
β€’ zoom

About

πŸš€πŸ§¨πŸ“ Series of Tutorials to learn about Jetpack Compose with subjects Material Widgets, Layout, SubcomposeLayout, custom layouts, State, custom rememberable, recomposition, LaunchedEffect, side-effects, Gesture, Animation, Navigation, Canvas, UIs like whatsapp and others.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Kotlin 100.0%