Merge pull request #5166 from element-hq/feature/fga/create_room_flow_rework

Create room flow rework
This commit is contained in:
Benoit Marty 2025-08-18 09:38:28 +02:00 committed by GitHub
commit de16268674
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
340 changed files with 2539 additions and 1784 deletions

View file

@ -1,15 +0,0 @@
/*
* Copyright 2023, 2024 New Vector Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE files in the repository root for full details.
*/
package io.element.android.libraries.designsystem.utils
import androidx.compose.ui.tooling.preview.PreviewParameterProvider
open class StringProvider(val strings: List<String>) : PreviewParameterProvider<String> {
override val values: Sequence<String>
get() = strings.asSequence()
}