-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi hero tag #226
Multi hero tag #226
Conversation
@vkprogrammer-001, could you kindly share the error log? This would greatly assist in understanding the issue. |
hey @RunTerror @vkprogrammer-001 could you please help me? |
@RunTerror ok so this is the error log |
Setting Up the Beacon Locally You need to set up both the frontend and backend parts of the beacon. Frontend Setup:
dart pub global activate fvm
fvm install stable
fvm install <version>
ANDROID_MAP_API_KEY=<api_key_android>
IOS_MAP_API_KEY=<your_ios_google_maps_api_key>
HTTP_ENDPOINT=http://10.0.2.2:4000/graphql
WEBSOCKET_ENDPOINT=ws://10.0.2.2:4000/graphql Backend Setup:
mutation {
register(user: {name: “John Cenaa”, credentials: {email: “tester1@gmail.com”, password: “Pass@123”}}) {
_id
name
email
}
} If you get the correct response, then your server is ready to connect with the frontend. Follow the given instructions to complete the setup. Enjoy working with Beacon! |
@BrawlerXull if need any help feel free to contact me. and can post your query on the community on Slack channel |
@vkprogrammer-001 your solution seems correct for this problem, work on the CI test. |
@RunTerror Could you guide me on how to execute Flutter CI tests locally? I'd like to verify if all the tests are functioning as expected. |
Fixes #193
**Description: **
The issue of multiple heroes sharing the same tag within a subtree has been resolved. Previously, there was only one tag in the Floating Action Button (FAB), which caused conflicts when using it in two different instances. To rectify this, an additional tag has been added to the FAB, ensuring proper rendering and preventing hero tag clashes.