sprint-1 #1

Merged
user10 merged 20 commits from sprint-1 into main 2025-05-26 14:29:49 +00:00
4 changed files with 26 additions and 0 deletions
Showing only changes of commit 1d93d24c5c - Show all commits

View File

@ -34,6 +34,11 @@ import com.example.libary.theme.InputStroke
* текстовое поле * текстовое поле
* modifier - модификаторы * modifier - модификаторы
* value - значение * value - значение
* placeholder - the optional placeholder to be displayed when the text field is in focus and the input text is empty.
* topText - текст сверху
* errorText - текст ошибки
* pasMode - пароль мод
* onValueChange - вызываеться при изминение текста
* */ * */
@Composable @Composable
fun Input( fun Input(

View File

@ -25,6 +25,12 @@ import com.example.libary.theme.CaptionColor
import com.example.libary.theme.InputBGColor import com.example.libary.theme.InputBGColor
import com.example.libary.theme.InputStroke import com.example.libary.theme.InputStroke
/***
* текстовое поле поиска
* modifier - модификаторы
* value - значение
* onValueChange - вызываеться при изминение текста
*/
@Composable @Composable
fun SearchInput( fun SearchInput(
modifier: Modifier = Modifier, modifier: Modifier = Modifier,

View File

@ -28,6 +28,15 @@ import com.example.libary.theme.CaptionColor
import com.example.libary.theme.InputBGColor import com.example.libary.theme.InputBGColor
import com.example.libary.theme.InputStroke import com.example.libary.theme.InputStroke
/***
* текстовое поле поиска
* modifier - модификаторы
* value - значение
* onValueChange - вызываеться при изминение текста
* placeholder - the optional placeholder to be displayed when the text field is in focus and the input text is empty.
* data - список который будет отображатся в модальном окне
* leadingIcon - the optional leading icon to be displayed at the beginning of the text field container
*/
@Composable @Composable
fun Select( fun Select(
modifier: Modifier = Modifier, modifier: Modifier = Modifier,

View File

@ -53,6 +53,12 @@ val defaultTabBarData = listOf(
) )
) )
/**
* Нижняя панель
* modifier - модификаторы
* value - значение
* data - список элементов
* */
@Composable @Composable
fun TabBar( fun TabBar(
modifier: Modifier = Modifier, modifier: Modifier = Modifier,