Skip to content

Commit

Permalink
Update Readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
sampuran-singh committed Oct 16, 2024
1 parent 5b8407e commit 3a16d35
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<div align="center">
<h2>JetTrips: Dummy Travel App</h2>
</div>
------

**JetTrips** is a Android application implemented in Jetpack compose.

------

<h2 align="center">Highlights</h2>

- Jetpack compose
- Nested Jetpack compose navigation
- Single activity, no fragments, only composable destinations.

------

<h2 align="center">Tech Stack</h2>

- [Kotlin](https://kotlinlang.org/) - First class and official programming language for Android development.
- [Coroutines](https://kotlinlang.org/docs/reference/coroutines-overview.html) - To improve performance by doing I/O tasks out of main thread asynchronously.
- [Android Architecture Components](https://developer.android.com/topic/libraries/architecture) - Collection of libraries that help you design robust, testable, and maintainable apps.
- [Jetpack Compose](https://developer.android.com/jetpack/compose?gclsrc=ds&gclsrc=ds) - Jetpack Compose is Android’s recommended modern toolkit for building native UI
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) - Stores UI-related data that isn't destroyed on UI changes.
- [Kotlinx.serialization](https://kotlinlang.org/docs/serialization.html) - Provides sets of libraries for various serialization formats – JSON, CBOR, protocol buffers, and others.
- [Coil](https://coil-kt.github.io/coil/compose/) - An image loading library for Android backed by Kotlin Coroutines.
- [Dagger-Hilt](https://dagger.dev/hilt/) For [Dependency injection (DI)](https://developer.android.com/training/dependency-injection)
- [Room database](https://developer.android.com/jetpack/androidx/releases/room) - Persistence library provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.

<h2 align="center">License</h2>

[Apache License 2.0][license]


```
Copyright (c) [2024 - Present]
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.
```
7 changes: 7 additions & 0 deletions app/src/main/java/com/example/jettrips/ui/theme/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,10 @@ val GreenTeal = Color(0xFF48C9B0)
val DarkGrey_333333 = Color(0xFF333333)
val LightGrey_888888 = Color(0xFF888888)
val LightGrey_CCCCCC = Color(0xFFCCCCCC)

//New Dark theme
val dark_backgound_primary = Color(0xFF1C1C1E)
val dark_backgound_secondary = Color(0xFF2C2C2E)
val dark_backgound_tertiary = Color(0xFF2C2C2E)
val dark_backgound_inversePrimary = Color(0xFF1F1F21)
val dark_backgound_inverseSecondary = Color(0xFF38383A)

0 comments on commit 3a16d35

Please sign in to comment.