Skip to content

Commit

Permalink
Merge pull request #1797 from google/ben/removeswipe
Browse files Browse the repository at this point in the history
Remove SwipeRefresh
  • Loading branch information
bentrengrove authored Nov 25, 2024
2 parents f509c8a + 44e4185 commit 76df5d4
Show file tree
Hide file tree
Showing 23 changed files with 0 additions and 2,078 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ A library which provides a way to use Android Drawables as Jetpack Compose Paint
### 📜 [Adaptive](./adaptive/)
A library providing a collection of utilities for adaptive layouts.

### ⬇️ [Swipe to Refresh](./swiperefresh/) (Deprecated)
See our [Migration Guide](https://google.github.io/accompanist/swiperefresh/) for migrating to PullRefresh in Compose Material.

### 🎨 [AppCompat Theme Adapter](./appcompat-theme/) (Deprecated)
See our [Migration Guide](https://google.github.io/accompanist/appcompat-theme/) for migrating to the new artifact in Accompanist.

Expand Down Expand Up @@ -85,9 +82,6 @@ A wrapper around WebView for basic WebView support in Jetpack Compose.
### 🗜 [Test Harness](./testharness/) (Deprecated)
Utilities for testing Compose layouts.

### 📐 [Insets](./insets/) (Deprecated & Removed)
See our [Migration Guide](https://google.github.io/accompanist/insets/) for migrating to Insets in Compose.

---

## Future?
Expand Down
181 changes: 0 additions & 181 deletions docs/swiperefresh.md

This file was deleted.

3 changes: 0 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ nav:
- 'Core Theme Adapter':
- 'Guide': themeadapter-core.md
- 'API': api/themeadapter-core/
- 'Swipe Refresh':
- 'Guide': swiperefresh.md
- 'API': api/swiperefresh/
- 'Placeholder':
- 'Guide': placeholder.md
- 'Foundation API': api/placeholder/
Expand Down
1 change: 0 additions & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ dependencies {
implementation(project(":placeholder"))
implementation(project(":placeholder-material"))
implementation(project(":systemuicontroller"))
implementation(project(":swiperefresh"))
implementation(project(":testharness")) // Don't use in production! Use the configurations below
testImplementation(project(":testharness"))
androidTestImplementation(project(":testharness"))
Expand Down
40 changes: 0 additions & 40 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,46 +100,6 @@
</intent-filter>
</activity>

<activity
android:name=".swiperefresh.SwipeRefreshBasicSample"
android:label="@string/swiperefresh_title_basics"
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=".swiperefresh.SwipeRefreshContentPaddingSample"
android:label="@string/swiperefresh_title_content_padding"
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=".swiperefresh.SwipeRefreshTweakedIndicatorSample"
android:label="@string/swiperefresh_title_tweaked"
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=".swiperefresh.SwipeRefreshCustomIndicatorSample"
android:label="@string/swiperefresh_title_custom"
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=".systemuicontroller.SystemBarsColorSample"
android:label="@string/system_ui_controller_title_color"
Expand Down

This file was deleted.

Loading

0 comments on commit 76df5d4

Please sign in to comment.