Skip to content

Instantly share code, notes, and snippets.

View jsonkile's full-sized avatar

Jayson Kile jsonkile

View GitHub Profile
@Composable
fun DashedProgressIndicator(
modifier: Modifier = Modifier,
progress: Int = 3,
totalNumberOfBars: Int = 12
) {
Canvas(modifier = modifier) {
val barArea = size.width / totalNumberOfBars
val barLength = barArea - 10.dp.toPx()
@jsonkile
jsonkile / ZendeskRepository.kt
Created September 20, 2022 06:20
Create Transaction Issue Ticket
package com.global.gomoney.data.repository.viewmodelrepository
import androidx.lifecycle.liveData
import com.bumptech.glide.Glide
import com.global.gomoney.coroutines.DispatcherProvider
import com.global.gomoney.data.manager.DataManager
import com.global.gomoney.data.model.NetworkStatus
import com.global.gomoney.data.model.User
import com.global.gomoney.root.MvpApp
import com.global.gomoney.utils.toSentenceCase