Skip to content

Instantly share code, notes, and snippets.

View parthdesai1208's full-sized avatar
🏢
Working from office

Parth Desai parthdesai1208

🏢
Working from office
View GitHub Profile
@parthdesai1208
parthdesai1208 / interview programs
Last active March 11, 2024 13:34
kotlin code example
**************************************************************************************************************************************
Sort without sort function
**************************************************************************************************************************************
val numbers = mutableListOf(4, 8, 32, 2, 5, 8)
var temp: Int
for (i in 0 until numbers.size) {
for (j in i + 1 until numbers.size) {
if (numbers[i] > numbers[j]) {
temp = numbers[i]
******************************************************************************************************************************************
ex-1
statement = here, we want to test that, from 3 tabs, whatever value is set for current screen so according that same tab should selected.
******************************************************************************************************************************************
passed case)
@get:Rule
val composeTestRule = createComposeRule()
@Test
fun rallyTopAppBarTest() {
*********************************************************************************************************************************
AnimatedVisibility - without params
*********************************************************************************************************************************
@Preview(showSystemUi = true)
@Composable
fun SimpleAnimatedVisibility() {
var visibility by remember { mutableStateOf(true) }
Column(
modifier = Modifier.fillMaxSize(),
*********************************************************************************************************************************
Image
*********************************************************************************************************************************
Usage:
painter = painterResource(id = OwlTheme.images.lockupLogo)
---------------------------------------------------------------------------------
data class:
@Immutable
data class Images(@DrawableRes val lockupLogo: Int)
values/themes.xml
<resources>
<style name="Theme.ComposeTheming" parent="Theme.Material.DayNight.NoActionBar">
<item name="android:statusBarColor">@color/status_bar</item>
</style>
<style name="Theme.Material.DayNight.NoActionBar" parent="@android:style/Theme.Material.Light.NoActionBar" />
</resources>
--------------------------------------------------------------------------------------------------------------------------
@Preview(showSystemUi = true)
@Composable
fun ConstraintLayoutContentPreview() {
ComposeTheme {
ConstraintLayoutContent()
}
}
//(1)----------------------------------Basic------------------------------------
@Composable
fun ConstraintLayoutContent() {
//implement custom column
@Composable
fun MyOwnColumn(
modifier: Modifier = Modifier,
content: @Composable () -> Unit
) {
Layout(
modifier = modifier,
content = content
) { measurables, constraints ->
@parthdesai1208
parthdesai1208 / custom modifier
Last active March 8, 2022 11:21
compose custom view
fun Modifier.baseLineToTop(firstBaselineToTop: Dp): Modifier {
return this.then(
layout { measurable, constraints ->
val placeable = measurable.measure(constraints = constraints)
// Check the composable has a first baseline
check(placeable[FirstBaseline] != AlignmentLine.Unspecified)
val firstBaseline = placeable[FirstBaseline]
@parthdesai1208
parthdesai1208 / FAB
Last active March 4, 2022 06:05
compose components
FloatingActionButton(onClick = { }, backgroundColor = MaterialTheme.colors.secondary) {
Icon(
painter = painterResource(id = R.drawable.ic_baseline_arrow_upward_24),
contentDescription = "Go Up"
)
@parthdesai1208
parthdesai1208 / LazyColumn basic
Last active February 10, 2022 14:19
RecyclerView like in compose
@Preview
@Composable
private fun columnRecyclerView(names: List<String> = List(1000) { "$it" }) {
val context = LocalContext.current
Column(
modifier = Modifier.fillMaxSize(), verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
) {
LazyColumn(modifier = Modifier.padding(vertical = 4.dp)) {
items(names) { name ->