Since we don't have a dedicated channel (such as #quotes), I created this gist to keep track of conversations that work as references.
Android specific discussions.
The longest list yet:
Since we don't have a dedicated channel (such as #quotes), I created this gist to keep track of conversations that work as references.
Android specific discussions.
The longest list yet:
| fun Any.prettyPrint(): String { | |
| var indentLevel = 0 | |
| val indentWidth = 4 | |
| fun padding() = "".padStart(indentLevel * indentWidth) | |
| val toString = toString() | |
| val stringBuilder = StringBuilder(toString.length) |
| package com.example.myapplication | |
| import androidx.compose.animation.AnimatedVisibility | |
| import androidx.compose.animation.ExperimentalAnimationApi | |
| import androidx.compose.foundation.Box | |
| import androidx.compose.foundation.clickable | |
| import androidx.compose.foundation.layout.Arrangement | |
| import androidx.compose.foundation.layout.Column | |
| import androidx.compose.foundation.layout.Row | |
| import androidx.compose.foundation.layout.Spacer |
| //src: http://kurrytran.blogspot.ru/2014/05/android-studio-list-of-suppress-warning.html | |
| //https://android.googlesource.com/platform/tools/adt/idea/+/jb-mr2-dev/adt-branding/src/META-INF/AndroidIdePlugin.xml | |
| //https://android.googlesource.com/platform/tools/adt/idea/+/jb-mr2-dev/android/src/META-INF/plugin.xml | |
| //Most Common Annotations | |
| @SuppressWarnings("all") | |
| @SuppressWarnings("unchecked") | |
| @SuppressWarnings({"JavaDoc"}) | |
| @SuppressWarnings({"UnusedDeclaration"}) |