Is it possible to make sub web components in Dart ?
Say, for example, I have a x-chatwindow custom element and I would like it to have an x-textarea and x-textinput sub component.
A fictional implementation would be :
<x-chatwindow>
<x-textarea/>
<x-textinput/>
</x-chatwindow>
Is there a specific problem you are facing?
You can use the
<content></content>inside yourChatWindowComponenttemplate:Then the page where you use them: