Skip to content

Instantly share code, notes, and snippets.

View moizest89's full-sized avatar
🎯
Focusing

Moises Portillo moizest89

🎯
Focusing
View GitHub Profile
@moizest89
moizest89 / DialogBuilder.kt
Created November 15, 2018 21:03 — forked from ilkinulas/DialogBuilder.kt
Kotlin Builder Pattern
class Dialog private constructor(
val title: String,
val message: String,
val titleColor: Color,
val bodyColor: Color,
val icon: Image,
val onClose: () -> Unit) {
fun show() {
//...
@moizest89
moizest89 / FragmentUtils.java
Created May 22, 2018 22:36 — forked from amilcar-sr/FragmentUtils.java
Utility class that helps with fragment manipulation
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
/**
* Utility class that helps with fragment manipulation.
*/
public class FragmentUtils {
/**