Giter VIP home page Giter VIP logo

Comments (6)

danagbemava-nc avatar danagbemava-nc commented on June 27, 2024

Hi @Galzysoft, the code sample you provided has a lot of third-party packages. For this to be actionable as a go_router issue, we will need a code sample with only go_router and other packages from the core flutter library. There's a possibility that the third-party packages could be causing your issue.

Please provide a minimal sample without third party packages so that we can properly investigate this.

Thank you

from flutter.

Galzysoft avatar Galzysoft commented on June 27, 2024

Hi @Galzysoft, the code sample you provided has a lot of third-party packages. For this to be actionable as a go_router issue, we will need a code sample with only go_router and other packages from the core flutter library. There's a possibility that the third-party packages could be causing your issue.

Please provide a minimal sample without third party packages so that we can properly investigate this.

Thank you

every thing is working well on release mode until i changed my aplicationstack to go_router

bellow is my pubspec

name: mabi
description: "A video viewing app"

publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
environment:
  sdk: '>=3.3.1 <4.0.0'
dependencies:
  flutter:
    sdk: flutter
  get: ^4.6.5
  flutter_screenutil: ^5.9.1
  auto_orientation: ^2.3.1
  carousel_slider: ^4.2.1

  flutter_animate: ^3.1.0
  animations: ^2.0.7
  google_fonts: ^4.0.3
  pull_to_refresh: ^2.0.0
  easy_localization: ^3.0.5
  group_button: ^5.2.2
  ms_material_color: ^1.0.0
  image_picker: ^0.8.6+1
  timeago: ^3.3.0
  pinput: ^2.2.31
  go_router: ^14.1.1

  path: ^1.8.2
  url_launcher:
  device_preview: ^1.1.0

  easy_debounce: ^2.0.3
  expandable_text: ^2.3.0
  shared_preferences: ^2.0.20
  device_info_plus: ^8.1.0
  custom_pop_up_menu: ^1.2.4

  screen_brightness: ^0.2.2

  syncfusion_flutter_sliders: ^20.4.54
  dio: ^5.1.0
  http_parser: ^4.0.2
  http:
  cached_network_image: ^3.3.0
  shimmer: ^3.0.0
  flutter_cache_manager: ^3.3.1
  palette_generator: ^0.3.3+2
  awesome_snackbar_content: ^0.1.3
  intl:
  dio_smart_retry:
  clipboard: ^0.1.3
  android_path_provider: ^0.3.0
  hive: ^2.2.3
  flutter_downloader: ^1.11.3
  path_provider: ^2.0.11
  get_storage: ^2.1.1
  permission_handler: ^11.0.1
  firebase_core: ^2.31.0
  firebase_messaging: ^14.9.2

  better_player: ^0.0.83
  brightness_volume: ^1.0.3

  cupertino_icons: ^1.0.2

dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_launcher_icons: ^0.12.0
flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "assets/playstore.png"
  min_sdk_android: 21 # android min sdk min:16, default 21
  web:
    generate: true
    image_path: "assets/playstore.png"
    background_color: "#hexcode"
    theme_color: "#hexcode"
  windows:
    generate: true
    image_path: "assets/playstore.png"
    icon_size: 48
 
  flutter_lints: ^2.0.0


  uses-material-design: true


  assets:

    - assets/First Slide/
    - assets/Second Slide/
    - assets/Third Frame/
    - assets/logo anim/
    - assets/
    - assets/icons/
    - assets/fonts/
    - assets/translations/
    - assets/dummy/

 

 
  fonts:
    - family: GeneralSans
      fonts:
        - asset: assets/fonts/GeneralSans-Regular.otf
        - asset: assets/fonts/GeneralSans-Italic.otf
          style: italic
        - asset: assets/fonts/GeneralSans-Bold.otf

          weight: 900

    - family: Casual-Regular
      fonts:
        - asset: assets/fonts/Casual-Regular.ttf
 

from flutter.

danagbemava-nc avatar danagbemava-nc commented on June 27, 2024

Hi @Galzysoft, like I mentioned earlier, we will need a minimal reproducible code sample with go_router and no or minimal third-party plugins to properly investigate this.

What router were you using before changing to go_router? Are you certain you've removed all usage of the previous router in your app?

from flutter.

Galzysoft avatar Galzysoft commented on June 27, 2024

Hi @Galzysoft, like I mentioned earlier, we will need a minimal reproducible code sample with go_router and no or minimal third-party plugins to properly investigate this.

What router were you using before changing to go_router? Are you certain you've removed all usage of the previous router in your app?

i am using getx as my router before yes sir i have remove all the usage of getx for navigation i have even changed my GetMaterialapp to MaterialApp.router and i only use getx for state management only and am using gorouter and other native material app for my app functionality

from flutter.

Galzysoft avatar Galzysoft commented on June 27, 2024

Hi @Galzysoft, like I mentioned earlier, we will need a minimal reproducible code sample with go_router and no or minimal third-party plugins to properly investigate this.

What router were you using before changing to go_router? Are you certain you've removed all usage of the previous router in your app?

these person from stack overflow is having similar issue https://stackoverflow.com/questions/78362421/flutter-gorouter-go-does-not-working-in-the-release-mode

from flutter.

Galzysoft avatar Galzysoft commented on June 27, 2024

I have finally fixed it is not packages that is the problem but its is a recursive animation that I did not dispose well so I fixed it it start working for me thanks a lot @danagbemava-nc I appreciate

from flutter.

Related Issues (20)

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.