Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created October 2, 2019 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/1b87918e716ba10df4b390df079a1a33 to your computer and use it in GitHub Desktop.
Save MarcinusX/1b87918e716ba10df4b390df079a1a33 to your computer and use it in GitHub Desktop.
TextField(
decoration: InputDecoration(
labelText: 'Nasz input',
border: OutlineInputBorder(),
),
),
Row(
children: <Widget>[
Icon(Icons.star),
Icon(Icons.star),
Switch(
value: true,
onChanged: (checked) {},
),
FloatingActionButton(
child: Icon(Icons.add),
onPressed: () {},
)
],
),
Slider(
value: 0.7,
onChanged: (v) {},
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment