Using provided demo if webformcreate event is commented or webformcreate only contains following :
it := WebSideMenu1.Items.Add;
it.Text := 'Favorites';
it.Hint := it.Text;
it.ContentControl := wpFavorites;
it.MaterialGlyph := 'star';
it.MaterialGlyphType := mgOutlined;
or does not contain the following;
it := WebSideMenu1.Items.Add;
it.&Type := itControl;
it.Control := WebEdit1;
it.Hint := 'Search';
it.ContentControl := wpSearch;
it.MaterialGlyph := 'search';
it.MaterialGlyphType := mgOutlined;
the menu does not show properly.
Also Fixed items at the bottom do not show when FixedItems is populated and FixedVisible is set to true.