Пример #1
0
 void _addChildScene(double dx,
                     double dy,
                     double width,
                     double height,
                     SceneHost sceneHost,
                     bool hitTestable)
 {
     // native 'SceneBuilder_addChildScene';
 }
Пример #2
0
        /// (Fuchsia-only) Adds a scene rendered by another application to the scene
        /// for this application.
        public void addChildScene(
            Offset offset       = null,
            double width        = 0.0,
            double height       = 0.0,
            SceneHost sceneHost = null,
            bool hitTestable    = true
            )
        {
            if (offset == null)
            {
                offset = Offset.zero;
            }

            _addChildScene(offset.dx,
                           offset.dy,
                           width,
                           height,
                           sceneHost,
                           hitTestable);
        }