but that seems not to work anymore after switching to flutter instead of flutter_web
Ephenodrom
@Ephenodrom
flutter pub global run webdev serve
webdev could not run forthis project.
You have a dependency on `flutter` which isnot supported for flutter_web tech preview. See https://flutter.dev/web for more details.
pub finished with exit code 78
Ephenodrom
@Ephenodrom
someone knows the alternativ to webdev serve --auto restart it is anoying to always start an extra instance of chrome with flutter run -d chrome
yeah, flutter is being folded into the core on the master branch.
flutter-web
might have some issues during the integration, but I used it the other day.
Ephenodrom
@Ephenodrom
works quite good
just having some problems with hot reload
Randal L. Schwartz
@RandalSchwartz
yeah, hot reload not yet available for flutter-web
just hot-restart
and I’ve found that to be a bit dicey
Ephenodrom
@Ephenodrom
sometimes i got Another exception was thrown: NoSuchMethodError: invalid member on null: 'findRenderObject' and i have to restart the app with flutter run -d
Dima Rostopira
@rostopira
@thomashbailey there is conditional import feature
both imported files should have same classes names/methods/arguments if they are used in target file
thomashbailey
@thomashbailey
That's nice to know. Thanks all.
Ephenodrom
@Ephenodrom
Is it possible to make a <a> tag inside a flutter web app, to redirect to a certain url? Example I have a site and the app is under /app. Now within the app I want to redirect back to /home for example.
Randal L. Schwartz
@RandalSchwartz
The router should be exposed in a useful way.
I think it works the same way as core flutter.
Ephenodrom
@Ephenodrom
I will give it a try
Will try to recreate the bootstrap navbar in flutter so the app looks like ist fully integrated within the website.