iws_help 0.0.1 copy "iws_help: ^0.0.1" to clipboard
iws_help: ^0.0.1 copied to clipboard

unlistedoutdated

Add documentation pages and contextual help to widgets using the IWS service.

Add documentation pages and contextual help to widgets using the IWS service.

Features #

  • Wrap components with contextual help.
  • Shows a list with all help topics.
  • Shows a list with all the help available for a page.

Getting started #

Add the IWS API key as a DART variable at compile time:

--dart-define=IWS_API_KEY=xxxxxxxxxxxxxx

Usage #

Wrap components with contextual help

import 'package:iws_help/iws_help.dart';

    HelpIcon(
        helpKey: 'money',
        fullScreen: false,
        child: TextField(
            decoration: InputDecoration(labelText: 'Money'),
        )
    )

Displays a screen with available help

import 'package:iws_help/iws_help.dart';

    Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
        actions: const [
            GeneralHelpButton(label: 'More help'), 
            SizedBox(width: 10),
        ],
      ),
      body: _body()
    )
0
likes
0
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Add documentation pages and contextual help to widgets using the IWS service.

Homepage

License

unknown (license)

Dependencies

appflowy_editor, bloc, flutter, flutter_bloc, flutter_markdown, iws_http, iws_http_model, url_launcher

More

Packages that depend on iws_help