Results 8 issues of Matic Leva

**Describe what scenario you think is uncovered by the existing examples/articles** It seems, providers are initialised lazily only when needed, possibly never. This isn't mentioned in documentation, so I assumed...

documentation

## Check List Please check followings before submitting a new issue. - [x] I have already read [Docs page](https://hexo.io/docs/) & [Troubleshooting page](https://hexo.io/docs/troubleshooting) - [x] I have already searched existing issues...

feature-request

Add Typescript type definitions.

We need native plugin that will provide a list of apps that are installed both on phone and watch and can show notifications. This plugin is needed for `Settings ->...

Including provider this way: ``` MaterialApp( builder: (context, widget) { return LoadingProvider( child: widget, ); }, ); ``` throws away entire widget tree inside LoadingProvider if anything above changes, for...

It's fairly common to throw objects inherited from Error, such as this: ``` class HttpError extends Error { constructor(public status: number, message?: string) { super(message); this.name = 'HttpError'; Error.captureStackTrace(this, HttpError)...