Gtk.ScrolledWindow.prototype.add_with_viewport

function add_with_viewport(child:Gtk.Widget):void {
    // Gjs wrapper for gtk_scrolled_window_add_with_viewport()
}

Used to add children without native scrolling capabilities. This is simply a convenience function; it is equivalent to adding the unscrollable child to a viewport, then adding the viewport to the scrolled window. If a child has native scrolling, use Gtk.Container.prototype.add instead of this function.

The viewport scrolls the child by moving its Gdk.Window, and takes the size of the child to be the size of its toplevel Gdk.Window. This will be very wrong for most widgets that support native scrolling; for example, if you add a widget such as Gtk.TreeView with a viewport, the whole widget will scroll, including the column headings. Thus, widgets with native scrolling support should not be used with the Gtk.Viewport proxy.

A widget supports scrolling natively if it implements the Gtk.Scrollable interface.

child

the widget you want to scroll