我试图从 Android 迁移到 Flutter 编程。我想知道是否有任何程序可以让我访问 Flutter 中的数据库表?
对于 Android,我使用了一个名为 Stetho 的程序来浏览我的数据库。我只是通过在 build.gradle 中添加依赖项来安装它;
dependencies {
....
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
.... }
然后将其导入我的主类;
@Override protected void onCreate(Bundle savedInstanceState) {
...
Stetho.initializeWithDefaults(this);
new OkHttpClient.Builder().addNetworkInterceptor(new StethoInterceptor()).build();
我也可以在 Flutter 中实现这一点吗?