(props: Self::Properties, _: ComponentLink<Self>)
| 98 | type Properties = TextFieldProps; |
| 99 | |
| 100 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 101 | // TextField::ensure_loaded(); |
| 102 | Self { |
| 103 | props, |
| 104 | node_ref: NodeRef::default(), |
| 105 | // validity_transform_closure: None, |
| 106 | input_listener: None, |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 111 | false |
nothing calls this directly
no outgoing calls
no test coverage detected