This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun <T> SwipeToDeleteContainer( | |
item: T, | |
onDelete: (T) -> Unit, | |
animationDuration: Int = 500, | |
content: @Composable (T) -> Unit, | |
) { | |
var isRemoved by remember { mutableStateOf(false) } | |
val state = rememberSwipeToDismissBoxState( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nezdroid Terms of Service | |
1. Terms | |
By accessing our app, Internet Speed master, you are agreeing to be bound by these terms of service, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing Internet Speed master. The materials contained in Internet Speed master are protected by applicable copyright and trademark law. | |
2. Use License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:background="@android:color/holo_blue_light" | |
android:layout_height="200dp"/> | |
<LinearLayout |