Environment.initialURL
Functional API
getSchemeUriYou can use the same feature with it as well.
Feature description
This is the scheme URL used when first entering the app. Subsequent page navigations are not reflected.
It's a constant value, so you can read it directly without calling anything.
Type
Environment.initialURL: string;Params
None
Response
This is the scheme URL string.
Example code
import { Environment } from "@apps-in-toss/web-framework";
console.log(Environment.initialURL);Was this helpful?