yairsts
yairsts
Same issue...
You can try this: final columns = state!.columns; for (var element in columns) { state!.resizeColumn(element, 0.1); state!.resizeColumn(element, -0.1); } state!.notifyResizingListeners(); }
until appearing next version you can try this: final columns = state!.columns; for (var element in columns) { state!.resizeColumn(element, 0.1); state!.resizeColumn(element, -0.1); } state!.notifyResizingListeners(); }
same problem. any solution?
Yes, this is my Podfile: ``` platform :ios, '11.0' ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debug, 'Profile' => :release, 'Release' => :release, } def flutter_root generated_xcode_build_settings_path = File.expand_path(File.join('..',...
No, I removed `sqlite3_flutter_libs`. `-framework sqlite3_flutter_libs` left, I remove it now and unfortunately, I still get the error Of course, I delete all Pods folder and podfile.lock and run Pod...