The Bug Description
There is a typo in an exception message within the get package.
The error message currently reads:
"GetRoot is not part of the three"
It should say:
"GetRoot is not part of the tree"
To Reproduce
Steps to reproduce:
1. Use GetMaterialApp
2. Trigger navigation logic that tries to access Get.rootDelegate before GetRoot is attached
3. Observe the exception thrown
4. The error message includes the incorrect word: “three”
Expected behaviour
The message should read "GetRoot is not part of the tree"
Follow this
|
throw Exception('GetRoot is not part of the three'); |
The Bug Description
There is a typo in an exception message within the get package.
The error message currently reads:
"GetRoot is not part of the three"It should say:
"GetRoot is not part of the tree"To Reproduce
Steps to reproduce:
1. Use GetMaterialApp
2. Trigger navigation logic that tries to access Get.rootDelegate before GetRoot is attached
3. Observe the exception thrown
4. The error message includes the incorrect word: “three”
Expected behaviour
The message should read "GetRoot is not part of the tree"
getx/lib/get_navigation/src/root/get_root.dart
Line 317 in daa3b93