Package | Pub | Description |
---|---|---|
xcallbackurl_bear | A bear X-callback-url scheme implementation |
Select one of the supported app scheme libraries and add the base and app packages to your pubspec.yaml
replacing x.x.x and y.y.y with the latest version of both. The example below uses the xcallbackurl_bear
package which provides bear X-callback-url scheme support:
dependencies:
xcallbackurl: ^x.x.x
xcallbackurl_bear: ^y.y.y
Run the following command to install dependencies:
dart pub get
Finally, to start developing import the api and the selected storage implementation. In the example bellow the selected storage implementation is xcallbackurl_memory
thus we import the xcallbackurl_api
and the xcallbackurl_memory
libraries:
import 'package:xcallbackurl/xcallbackurl.dart';
import 'package:xcallbackurl/xcallbackurl_bear.dart';
// In a more general sense 'package:xcallbackurl/xcallbackurl_xxx.dart' where xxx is the name of the
// app schemes, `bear` for example
import 'package:xcallbackurl/xcallbackurl_api.dart';
import 'package:xcallbackurl_file/xcallbackurl_file.dart';
Contributions are always welcome!
If you would like to contribute with other parts of the API, feel free to make a Github pull request as I'm always looking for contributions for:
- Tests
- Documentation
- New APIs
See CONTRIBUTING.md for ways to get started.
Please file feature requests and bugs at the issue tracker.
This project is licensed under the MIT License - see the LICENSE file for details