Coder Social home page Coder Social logo

Comments (3)

arturjnt avatar arturjnt commented on July 26, 2024 2

Seems I have "fixed" the problem, in what I admit is a non-ideal way.
Here's the workaround

Create a lib/restart_app.dart

import 'package:flutter/material.dart';

class RestartWidget extends StatefulWidget {
  RestartWidget({required this.child});

  final Widget child;

  static void restartApp(BuildContext context) {
    context.findAncestorStateOfType<_RestartWidgetState>()!.restartApp();
  }

  @override
  _RestartWidgetState createState() => _RestartWidgetState();
}

class _RestartWidgetState extends State<RestartWidget> {
  Key key = UniqueKey();

  void restartApp() {
    setState(() {
      key = UniqueKey();
    });
  }

  @override
  Widget build(BuildContext context) {
    return KeyedSubtree(
      key: key,
      child: widget.child,
    );
  }
}

Import it in lib/main.dart and lib/main_prod.dart and surround the MyApp widget with it.

RestartWidget(
  child: MyApp(
    databaseBuilder: (_, uid) => FirestoreDatabase(uid: uid),
    key: Key('wdev'),
  ),
),

Import lib/restart_app.dart also in lib/ui/setting/setting_screen.dart and replace these three lines

Navigator.pop(context);
Navigator.of(context).pushNamedAndRemoveUntil(
  Routes.login, ModalRoute.withName(Routes.login));

with

RestartWidget.restartApp(context);

What this does, is re-start the app which in itself restarts the FirestoreDatabase which uses the uid gotten only once on app start.
This way, on logout, the database is reset to the initial state (no user logged in).

Again, this isn't great, but it works.

from create_flutter_provider_app.

KenAragorn avatar KenAragorn commented on July 26, 2024 1

@arturjnt hello there. Thanks a lot for sharing this and also the details info. The RestartWidget seems to be a quick fix.

Very sorry for late response, was working on another projects. I'm open up to anyone that are interested to continue improving this open project.

from create_flutter_provider_app.

Airick73 avatar Airick73 commented on July 26, 2024

I also have been encountering the same issues. I had a good chuckle to myself when I saw that someone had the exact same issues and we even implemented the same kind of fixes even though I hadn't taken a look at this post.

from create_flutter_provider_app.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.