1. NeoTextField

    Untitled

    val textFieldValue by remember { mutableStateOf("") }
    
    NeoTextField(value = textFieldValue)
    

    More Details:

    NeoTextField

  2. PasswordTextField Inheriting from NeoTextField, this textfield includes password view and hide/unhide password.

    Untitled

    Untitled

    val passwordState by remember { mutableStateOf("") }
    
    PasswordTextField(
        value = passwordState,
        placeHolder = "password" //This field is optional
    )
    
  3. NeoCard

    Untitled

    NeoCard(desc = "Yeah") {}
    

    To be renamed ButtonCard

  4. NeoCard2

    Untitled

    To be renamed Pocket().

    NeoCard2(
    	columnOne = {Text("columnOne")},
    	columnTwo = { Text("columnTwo") }
    ) {
    	Text("Content")
    }