diff --git a/releases/next/docs/image.html b/releases/next/docs/image.html index 6a1d15bd02b..c6ec919d207 100644 --- a/releases/next/docs/image.html +++ b/releases/next/docs/image.html @@ -85,7 +85,13 @@ as the background.
For details of how this works under the hood, see http://frescolib.org/docs/rounded-corners-and-circles.html
ImageResizeModeis anEnumfor different image resizing modes, set via theresizeModestyle property onImagecomponents. The values arecontain,cover,stretch,center,repeat.
A unique identifier for this element to be used in UI Automation -testing scripts.
The text that's read by the screen reader when the user interacts with +testing scripts.
The mechanism that should be used to resize the image when the image's dimensions
+differ from the image view's dimensions. Defaults to auto.
auto: Use heuristics to pick between resize and scale.
resize: A software operation which changes the encoded image in memory before it
+gets decoded. This should be used instead of scale when the image is much larger
+than the view.
scale: The image gets drawn downscaled or upscaled. Compared to resize, scale is
+faster (usually hardware accelerated) and produces higher quality images. This
+should be used if the image is smaller than the view. It should also be used if the
+image is slightly bigger than the view.
More details about resize and scale can be found at http://frescolib.org/docs/resizing-rotating.html.
The text that's read by the screen reader when the user interacts with the image.
When true, indicates the image is an accessibility element.
blurRadius: the blur radius of the blur filter added to the image
When the image is resized, the corners of the size specified
by capInsets will stay a fixed size, but the center content and borders
of the image will be stretched. This is useful for creating resizable
diff --git a/releases/next/docs/using-navigators.html b/releases/next/docs/using-navigators.html
index 420a8451739..b36e0a5da0d 100644
--- a/releases/next/docs/using-navigators.html
+++ b/releases/next/docs/using-navigators.html
@@ -42,43 +42,46 @@ AppRegistry.
index: 1,
});
-navigator.pop();
A more complete example that demonstrates the pushing and popping of routes could therefore look something like this:
A more complete example that demonstrates the pushing and popping of routes. Edit your index*.js file to look something like this:
And your MyScene.js to match this: