Skip to content

Commit

Permalink
Merge pull request #1052 from andkulikov/main
Browse files Browse the repository at this point in the history
[Pager] Add a demo for a pager with different paddings
  • Loading branch information
bentrengrove committed Feb 27, 2022
2 parents da11754 + 592238f commit e0c8ef7
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,16 @@
</intent-filter>
</activity>

<activity
android:name=".pager.HorizontalPagerDifferentPaddingsSample"
android:label="@string/horiz_pager_title_different_paddings"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.google.accompanist.sample.SAMPLE_CODE" />
</intent-filter>
</activity>

<activity
android:name=".pager.VerticalPagerBasicSample"
android:label="@string/vertical_pager_title_basics"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Copyright 2022 The Android Open Source Project
*
* 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
*
* https://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.
*/

package com.google.accompanist.sample.pager

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Card
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Scaffold
import androidx.compose.material.Surface
import androidx.compose.material.Text
import androidx.compose.material.TopAppBar
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.graphicsLayer
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import coil.annotation.ExperimentalCoilApi
import coil.compose.rememberImagePainter
import com.google.accompanist.pager.ExperimentalPagerApi
import com.google.accompanist.pager.HorizontalPager
import com.google.accompanist.pager.calculateCurrentOffsetForPage
import com.google.accompanist.sample.AccompanistSampleTheme
import com.google.accompanist.sample.R
import com.google.accompanist.sample.rememberRandomSampleImageUrl

class HorizontalPagerDifferentPaddingsSample : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)

setContent {
AccompanistSampleTheme {
Surface {
Sample()
}
}
}
}
}

@OptIn(ExperimentalPagerApi::class)
@Composable
private fun Sample() {
Scaffold(
topBar = {
TopAppBar(
title = { Text(stringResource(R.string.horiz_pager_title_different_paddings)) },
backgroundColor = MaterialTheme.colors.surface,
)
},
modifier = Modifier.fillMaxSize()
) {
HorizontalPagerDifferentPaddings()
}
}

/**
* This demo demonstrates how to achieve a behavior where for the user it feels like
* there is no start padding before the first item and no end padding after the last item,
* but all other items are centered with half of the padding applied for the first/last item.
*/
@OptIn(ExperimentalPagerApi::class, ExperimentalCoilApi::class)
@Composable
fun HorizontalPagerDifferentPaddings() {
val count = 4
val padding = 16.dp

HorizontalPager(
count = count,
contentPadding = PaddingValues(horizontal = padding),
modifier = Modifier.fillMaxSize()
) { page ->
Card(
Modifier
.graphicsLayer {
// Calculate the offset do neutralize paddings on the sides on
// the first and the last page.
val pageOffset = calculateCurrentOffsetForPage(page)
val offsetToFillStartPadding = minOf(page + pageOffset - 1, 0f)
val offsetToFillEndPadding = maxOf(page + pageOffset - count + 2, 0f)
translationX =
padding.toPx() * (offsetToFillStartPadding + offsetToFillEndPadding)
}
.fillMaxWidth()
.aspectRatio(1f),
shape = RoundedCornerShape(18.dp)
) {
Image(
painter = rememberImagePainter(
data = rememberRandomSampleImageUrl(width = 600),
),
contentDescription = null,
modifier = Modifier.fillMaxSize()
)
}
}
}
1 change: 1 addition & 0 deletions sample/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<string name="horiz_pager_title_looping">Horizontal Pager: Looping</string>
<string name="horiz_pager_title_tabs">Horizontal Pager: Tabs</string>
<string name="horiz_pager_title_scroll_content">Horizontal Pager: Scrolling content</string>
<string name="horiz_pager_title_different_paddings">Horizontal Pager: Different paddings</string>

<string name="vertical_pager_title_basics">Vertical Pager: Basic</string>
<string name="vertical_pager_with_indicator_title">Vertical Pager: Indicator</string>
Expand Down

0 comments on commit e0c8ef7

Please sign in to comment.