All Projects → MindorksOpenSource → Jetpack Compose Android Examples

MindorksOpenSource / Jetpack Compose Android Examples

Licence: apache-2.0
Learn Jetpack Compose for Android by Examples. Learn how to use Jetpack Compose for Android App Development. Android’s modern toolkit for building native UI.

Programming Languages

kotlin
9241 projects

Labels

Projects that are alternatives of or similar to Jetpack Compose Android Examples

Jetpack Compose Playground
Community-driven collection of Jetpack Compose example code and tutorials 🚀 https://foso.github.io/compose
Stars: ✭ 969 (+368.12%)
Mutual labels:  compose
Kompose
🔥 Architecture pattern for multiplatform mobile apps with Kotlin Multiplatform (common), SwiftUI (iOS) & Compose (Android).
Stars: ✭ 113 (-45.41%)
Mutual labels:  compose
Compose Richtext
A collection of Compose libraries for advanced text formatting and alternative display types.
Stars: ✭ 162 (-21.74%)
Mutual labels:  compose
Plasma
An Android Application written using latest Android Jetpack components and best practices, which displays trending movies/TV shows and cast, user can search movies and TV shows and also add them to watchlist.
Stars: ✭ 67 (-67.63%)
Mutual labels:  compose
To Do
A Kotlin Multiplatform to-do list app with SwiftUI and Compose UI frontends
Stars: ✭ 105 (-49.28%)
Mutual labels:  compose
App
Make your Docker Compose applications reusable, and share them on Docker Hub
Stars: ✭ 1,578 (+662.32%)
Mutual labels:  compose
Rooks
Essential hooks ⚓ to super charge your components!
Stars: ✭ 889 (+329.47%)
Mutual labels:  compose
Jetquotes
🔖 A Quotes Application built to Demonstrate the Jetpack Compose UI
Stars: ✭ 179 (-13.53%)
Mutual labels:  compose
Twittercompose
TwitterCompose is an Android application 📱 for showcasing Jetpack Compose for building declarative UI in Android.
Stars: ✭ 109 (-47.34%)
Mutual labels:  compose
Klokk
🕒 A kinetic wall clock, built using Compose Desktop
Stars: ✭ 151 (-27.05%)
Mutual labels:  compose
Docker Series
Docker Series about containerizing ASP.NET Core app with MySQL..
Stars: ✭ 88 (-57.49%)
Mutual labels:  compose
Androidcomposesamples
An Android app which provides examples for Android Jetpack Compose
Stars: ✭ 105 (-49.28%)
Mutual labels:  compose
Rxlifecycle
Rx binding of stock Android Activities & Fragment Lifecycle, avoiding memory leak
Stars: ✭ 131 (-36.71%)
Mutual labels:  compose
Opencompose
OpenCompose - A higher level abstraction for Kubernetes Resource
Stars: ✭ 66 (-68.12%)
Mutual labels:  compose
Composecookbook
A Collection on all Jetpack compose UI elements, Layouts, Widgets and Demo screens to see it's potential
Stars: ✭ 3,516 (+1598.55%)
Mutual labels:  compose
Cloud Integration Beta
Docker CLI with ACI integration (beta)
Stars: ✭ 29 (-85.99%)
Mutual labels:  compose
Short
Manageable Kubernetes manifests through a composable, reusable syntax
Stars: ✭ 120 (-42.03%)
Mutual labels:  compose
Container.training
Slides and code samples for training, tutorials, and workshops about Docker, containers, and Kubernetes.
Stars: ✭ 2,377 (+1048.31%)
Mutual labels:  compose
Dinocompose
Chrome's Dino T-Rex game developed in Jetpack Compose
Stars: ✭ 170 (-17.87%)
Mutual labels:  compose
React Adopt
😎 Compose render props components like a pro
Stars: ✭ 1,668 (+705.8%)
Mutual labels:  compose

Jetpack-Compose-Android-Examples

Learn Jetpack Compose for Android by Examples. Learn how to use Jetpack Compose for Android App Development. Android’s modern toolkit for building native UI.

MindOrks Connect with us Open Source Love License

About this project:

  • If you want to get started with Jetpack Compose for Android Development and wants to master it, then this project is for you.
  • Common use-cases of Jetpack Compose in Android has been implemented in this project.
  • This is your one-stop solution for learning Jetpack Compose for Android Development.

Steps to learn Jetpack Compose by examples from this project

  • Just clone, build, run the project and start learning Jetpack Compose by examples.

This Jetpack Compose Example Project will help you in learning the following for Android App Development:

  • How to build UI using Jetpack Compose in Android?
  • How to display a Text and apply various styles on a Text?
  • How to display a TextField(EditText) and apply various styles on it?
  • How to use the Preview and PreviewParameter feature offered by Android Studio?
  • Learn how to use various layouts such as Column, ScrollableColumn, LazyColumn, Row, ScrollableRow, LazyRow, Box, Stack, and ConstraintLayout in Jetpack Compose?
  • Learn the usage of Clickable in Jetpack Compose with the help of examples.
  • How to use Buttons, Card, Images, AlertDialog, Single Choice Dialog in Jetpack Compose?
  • Through Jetpack Compose tutorial, you will learn various Material Design UI elements such as BottomAppBar, TopAppBar, BottomNavigation, Checkbox, CircularProgressIndicator, LinearProgressIndicator, RadioButton, Slider, Snackbar, and Switch.
  • Learn how to make Custom Views in Jetpack Compose?
  • How to add animation such as Crossfade and Shape Rotation in Jetpack Compose?

Jetpack Compose Examples for Android Development:

Project Directory Structure

.
└── com.mindorks.example.jetpack.compose/
    ├── animation/
    │   ├── CrossFadeAnimationActivity.kt
    │   └── ShapeRotationActivity.kt
    ├── button/
    │   └── MaterialButtonActivity.kt
    ├── card/
    │   └── CardExampleActivity.kt
    ├── clickable/
    │   └── ClickableExampleActivity.kt
    ├── customview/
    │   └── CustomViewActivity.kt
    ├── data/
    │   └── Blog.kt
    ├── dialog/
    │   ├── AlertDialogActivity.kt
    │   └── SingleChoiceDialogActivity.kt
    ├── image/
    │   └── ImageActivity.kt
    ├── layout/
    │   ├── BoxActivity.kt
    │   ├── ColumnActivity.kt
    │   ├── ConstraintLayoutActivity.kt
    │   ├── LazyColumnActivity.kt
    │   ├── LazyRowActivity.kt
    │   ├── RowActivity.kt
    │   ├── ScrollableColumnActivity.kt
    │   ├── ScrollableRowActivity.kt
    │   └── StackActivity.kt
    ├── materialdesign/
    │   ├── MaterialAppBarActivity.kt
    │   ├── MaterialBottomNavigationActivity.kt
    │   ├── MaterialCheckBoxActivity.kt
    │   ├── MaterialProgressActivity.kt
    │   ├── MaterialRadioButtonActivity.kt
    │   ├── MaterialSliderActivity.kt
    │   ├── MaterialSnackbarActivity.kt
    │   └── MaterialSwitchActivity.kt
    ├── preview/
    │   ├── DummyBlogProvider
    │   ├── PreviewParameterActivity.kt
    │   └── SimplePreviewActivity.kt
    ├── text/
    │   ├── SimpleTextActivity.kt
    │   ├── TextFieldActivity.kt
    │   └── TextStylingActivity.kt
    ├── ui/
    │   ├── Color.kt
    │   ├── Shape.kt
    │   ├── Theme.kt
    │   └── Type.kt
    └── MainActivity.kt

References useful during learning the Jetpack Compose for Android from this project

Explore Android Online Tutorials and Courses To Learn More by MindOrks

  • Ride-Sharing Uber Lyft Android App - Learn to build a ride-sharing Android Taxi Clone App like Uber, Lyft - Open-Source Project By MindOrks
  • Android Tutorial - All Free Android Tutorials by MindOrks
  • Android Online Course for Professionals - In this online course, you’ll learn the Dagger, Kotlin, RxJava, MVVM Architecture, Architecture Components, Jetpack, LiveData, ViewModel, Room Database, Database Design, Multithreading, Memory Management, Networking, Caching, How Glide works, Unit Testing, and the best practices for Android Development. By the end of this online course, you will have all the skills you need to become a professional Android Developer.
  • Android Online Course for Beginners - This course is for beginners for those who want to get started with Android Development. In this course, you will build two apps: TodoNotes and Ride-Sharing Uber Android App.

If this project helps you in anyway, show your love ❤️ by putting a ⭐️ on this project ✌️

Check out MindOrks awesome open source projects here

License

   Copyright (C) 2020 MINDORKS NEXTGEN PRIVATE LIMITED

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

Contributing to Jetpack Compose Android Examples

Just make pull request. You are in!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].