view

External Documentation

ReactElement view([

  1. Map<String, Object?>? props
])

Creates a <view> element.

Implementation

ReactElement view([Map<String, Object?>? props]) =>
    createElement('view'.toJS, props != null ? createProps(props) : null);