-
Notifications
You must be signed in to change notification settings - Fork 471
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
Move stop memory button to bottom center #959
Conversation
WalkthroughThis change introduces a minor UI enhancement to the Changes
Uplevel your code reviews with Entelligence.AI ProEntelligence.AI ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, Entelligence.AI Pro is free for open source projects. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Files selected (2)
- app/lib/pages/memory_capturing/page.dart (1)
- app/lib/widgets/confirmation_dialog.dart (2)
Files not summarized due to errors (1)
- app/lib/pages/memory_capturing/page.dart (diff tokens exceeds limit)
Review comments generated (11)
- Review: 4
- LGTM: 7
Tips
Chat with Entelligence.AI Bot (@Entelligence.AI
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@Entelligence.AI
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@Entelligence.AI: ignore
anywhere in the PR description to pause further reviews from the bot.
@@ -81,6 +81,7 @@ class ConfirmationDialog extends StatelessWidget { | |||
Text( | |||
description, | |||
textAlign: TextAlign.center, | |||
style: const TextStyle(fontSize: 14), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
child: Text(cancelText ?? "Cancel", style: const TextStyle(color: Colors.white, fontSize: 14)), | ||
), | ||
CupertinoDialogAction( | ||
onPressed: onConfirm, | ||
child: Text(confirmText ?? "Confirm", style: const TextStyle(color: Colors.white)), | ||
child: Text(confirmText ?? "Confirm", style: const TextStyle(color: Colors.white, fontSize: 14)), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes made here are setting the font size of the cancel and confirm button texts to 14. This is also a UI/UX decision and doesn't seem to introduce any issues.
- child: Text(cancelText ?? "Cancel", style: const TextStyle(color: Colors.white, fontSize: 14)),
- ),
- CupertinoDialogAction(
- onPressed: onConfirm,
- child: Text(confirmText ?? "Confirm", style: const TextStyle(color: Colors.white, fontSize: 14)),
+ child: Text(cancelText ?? "Cancel", style: const TextStyle(color: Colors.white, fontSize: 14)),
+ ),
+ CupertinoDialogAction(
+ onPressed: onConfirm,
+ child: Text(confirmText ?? "Confirm", style: const TextStyle(color: Colors.white, fontSize: 14)),
// Memory source | ||
var memorySource = MemorySource.friend; | ||
// var captureProvider = context.read<CaptureProvider>(); | ||
// if (captureProvider.isGlasses) { | ||
// memorySource = MemorySource.openglass; | ||
// } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
String transcriptElapsedTime(String timepstamp) { | ||
timepstamp = timepstamp.split(' - ')[1]; | ||
return timepstamp; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ScreenRecording_10-02-2024.20-58-03_1.1.mp4
Summary by Entelligence.AI
ConfirmationDialog
widget in the application. The font size for the description and action buttons has been increased to 14 for better readability and user experience.