• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Configuration Without Parameters
2
3
4If the API definition of a component does not contain mandatory parameters, you do not need to configure any content in the parentheses next to the component. For example, the Divider component does not contain parameters:
5
6```
7Column() {
8    Text('item 1')
9    Divider() // No parameter configuration of the divider component
10    Text('item 2')
11}
12```
13