如何制作圆形RaisedButton和Textfield

McG*_*ady 1 reactjs material-ui

我尝试添加样式RaisedButton,但它不起作用,并且

<RaisedButton type="submit" label="Submit" style={{container:{borderRadius: "5px"}}} primary/>
Run Code Online (Sandbox Code Playgroud)

我也看了这个问题,但仍然没有帮助:

<RaisedButton label="raised button" className="raised-button--rounded" />
.raised-button--rounded,
.raised-button--rounded button {
  border-radius: 25px; /* assuming one is not already defined */
}
Run Code Online (Sandbox Code Playgroud)

我的预期结果是这样的 在此输入图像描述

我想制作一个圆形的文本字段和按钮.任何人都可以给我一些建议来帮助我.

任何帮助将非常感谢!

Yo *_*ita 8

以下是我用来复制该按钮样式的属性:

    <RaisedButton
      label="Submit"
      buttonStyle={{ borderRadius: 25 }}
      style={{ borderRadius: 25 }}
      labelColor={'#FFFFFF'}
      backgroundColor={"#0066e8"}
    />

  label: button label
  buttonStyle: shapes the portion that has the background
  style: shapes the underlying root element
  labelColor: changes the font color to white
  backgroundColor: changes the background color to dodger-blue
Run Code Online (Sandbox Code Playgroud)

具有上述属性的按钮的GIF:

在此输入图像描述

文本域:

    <TextField
      underlineShow={false}
      color="white"
      type={'password'}
      value={'Foo'}
      inputStyle={{color: 'white', padding: '0 25px'}}
      style={{ backgroundColor: 'rgba(255,255,255,0.2)', borderRadius: 25 }}
    />
Run Code Online (Sandbox Code Playgroud)