Vexana Inspector Vexana Inspector

Pub Pub Star on Github License: MIT Youtube: HardwareAndro Medium: Vbacik

Applications with basic implementation will be able to access dashboards for network requests made by this library.

Example Usage
Example from app code sample

How to use

Just wrap your root widget with the VexanaInspect widget and set the isEnableShake property to true. This will allow you to open the dashboard by shaking your phone. Check with this link how it's working on. Vexana Inspector Video

You should install Vexana before you can use this package.

VexanaInspect(
      isEnableShake: true,
    //  theme: BasicProductTheme(),
      child: MaterialApp(
      navigatorObservers: [InspectorManager.navigatorObserver]
      )
  ,);

Then add vexana interceptor for listening network changes to your manager

dioInterceptors.add(InspectorManager.instance.interceptor);

Inspector open manually

Once the implementation is complete, you can just call the open function with the inspector instance. Instead of shake option. Your project can work with any button or etc with this function.

InspectorManager.open();

Theme

You can customize your network detail page by using ProductTheme. If you're not define theme, it will use default one(BasicProductTheme).

final class BasicProductTheme implements ProductTheme {
  const BasicProductTheme();
  @override
  Color get backgroud => Colors.white10;

  @override
  Color get cardBackgroud => Colors.red;

  @override
  Color get cardTextColor => Colors.white;

  @override
  Color get searchBackgroud => Colors.black;

  @override
  Color get searchTextColor => Colors.white;
}

Additional information

You can found a sample in example folder. Please add your thoughts to an issue or PR review and I will merge it as soon as possible.

License

MIT License

Copyright (c) 2024 Veli Bacik

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Libraries

vexana_inspector