flutter_flipperkit 0.0.17 flutter_flipperkit: ^0.0.17 copied to clipboard
Flipper (Extensible mobile app debugger) for flutter.
flutter_flipperkit #
English | 简体中文
Table of Contents #
Created by gh-md-toc
Introduction #
Flipper (Extensible mobile app debugger) for flutter.
Features #
-
Network inspector
-
Shared preferences (and UserDefaults) inspector
-
Redux inspector
Quick Start #
Prerequisites #
Before starting make sure you have:
- Installed Flutter Debugger or Flipper Desktop
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
flutter_flipperkit: ^0.0.17
Change your project ios/Podfile
file according to the example:
# Uncomment this line to define a global platform for your project
-# platform :ios, '8.0'
+platform :ios, '9.0'
Change your project files according to the example:
android/app/build.gradle
:
android {
- compileSdkVersion 27
+ compileSdkVersion 28
defaultConfig {
- targetSdkVersion 27
+ targetSdkVersion 28
}
}
android/app/gradle.properties
:
+android.useAndroidX=true
+android.enableJetifier=true
android/settings.gradle
:
...
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
+ if (name == 'flutter_flipperkit') {
+ include ':flipper-no-op'
+ project(':flipper-no-op').projectDir = new File(pluginDirectory, 'flipper-no-op')
+ }
}
...
You can install packages from the command line:
$ flutter packages get
Usage #
import 'package:flutter_flipperkit/flutter_flipperkit.dart';
void main() {
FlipperClient flipperClient = FlipperClient.getDefault();
flipperClient.addPlugin(new FlipperNetworkPlugin(
// Optional, for filtering request
filter: (HttpClientRequest request) {
String url = '${request.uri}';
if (url.startsWith('https://via.placeholder.com') || url.startsWith('https://gravatar.com')) {
return false;
}
return true;
}
));
flipperClient.addPlugin(new FlipperReduxInspectorPlugin());
flipperClient.addPlugin(new FlipperSharedPreferencesPlugin());
flipperClient.start();
runApp(MyApp());
}
...
Please refer to flutter_flipperkit_examples project, to integrate
flutter_flipperkit
into your project.
Run the app #
$ flutter run
Known Issues (to note) #
- 【iOS】If you use
use_frameworks!
in your Podfile, Please see the issue.
Related Links #
- https://github.com/blankapp/flutter_flipperkit_plugins
- https://github.com/blankapp/flutter_flipperkit_examples
- https://github.com/blankapp/flutter-debugger
- https://github.com/blankapp/flutter-debugger-docs
Discussion #
If you have any suggestions or questions about this project, you can discuss it by Telegram Group or my wechat.
License #
MIT License
Copyright (c) 2019 JianyingLi <lijy91@foxmail.com>
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.