Day 8
從Day8 fork一份開始
昨天提到了登入 才發現 文本框沒有介紹到
可用於各項輸入
<Input
id="standard-adornment-password"
type={values.showPassword ? "text" : "password"}
value={values.password}
onChange={handleChange("password")}
endAdornment={
<InputAdornment position="end">
<IconButton
aria-label="toggle password visibility"
onClick={handleClickShowPassword}
onMouseDown={handleMouseDownPassword}
>
{values.showPassword ? (
<Visibility />
) : (
<VisibilityOff />
)}
</IconButton>
</InputAdornment>
}
/>
比較特別的是 可以用React狀態控制 去選擇顯示密碼與否
一般常用的樣式都可在元件中快速取用