Nour Magdi

Results 6 issues of Nour Magdi

**Description** Adding .env configurations in order to add databases support (i.e mysql or postgres) to the dart_frog server whereas once you have the .env values of for instance mysql address...

i noticed that the newer version of the selfhost (1.3) doesn't redirect the host to /index.html by default you have to type the url localhost/index.html and sometimes causes caching errors...

I have this simple signal i've created to act as a flag/guard to do auth navigation ```dart @override Widget build(BuildContext context) { routerGuardSignal.listen(context, () { final isUserLoggedIn = routerGuardSignal.value; log(isUserLoggedIn.toString());...

bug

in the code example below example ```dart import 'package:flutter/material.dart'; import 'package:signals_flutter/signals_flutter.dart'; void main() { SignalsObserver.instance = LoggingSignalsObserver(); runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext...

to reproduce use any example use of `SignalProvider` i.e https://dartsignals.dev/flutter/signal-provider/ as the title says it's so self explainatory however in this example ```dart class Counter extends FlutterSignal { Counter([super.value =...

there's another weird behaviour i have found when using signals in such way so i have declared my signals as usual ```dart final selectedPostSignal = signal(null); ``` and in my...