Lp 188 implement update UI#77
Conversation
…P-188-implement-update-ui
Analysis Report for f4e6fb7
Click to see the full report |
mcquenji
left a comment
There was a problem hiding this comment.
Is the height of the instructions dialog with the MarkdownView still hardcoded? Or is it dynamic?
Reviewed 20 of 20 files at r1, all commit messages.
Reviewable status: all files reviewed, 7 unresolved discussions (waiting on @cpolat-tgm)
lib/app_router.dart line 119 at r1 (raw file):
page: UpdateRoute.page, path: '/update', initial: true,
set login as initial route
lib/features/update/presentation/screens/update_screen.dart line 7 at r1 (raw file):
/// Renders an update screen, which allows the user to update the app.
remove unnecessary newline
lib/features/update/presentation/widgets/widgets.dart line 1 at r1 (raw file):
//Export widgets
if there are no widgets remove this file
lib/shared/presentation/widgets/markdown.dart line 38 at r1 (raw file):
return ConditionalWidget( condition: data == null, ifTrue: FutureBuilder<HttpResponse>(
you may want to wrap this widget in a builder to avoid unnecessary network traffic when no Uri was provided
lib/shared/presentation/widgets/markdown.dart line 42 at r1 (raw file):
builder: (context, snapshot) { if (snapshot.hasData) { if (snapshot.data!.statusCode == 200) {
use HttpResponse.isOk instead of status code
lib/shared/presentation/widgets/markdown.dart line 58 at r1 (raw file):
Text(context.t.widgets_markdown_networkError(source.toString()), textAlign: TextAlign.center, style: TextStyle(fontSize: 12, letterSpacing: 0.4)),
please add a comma, for propper formatting
lib/shared/presentation/widgets/screen_title_bar.dart line 74 at r1 (raw file):
height: profileImageSize, child: CircleAvatar( backgroundImage: NetworkImage(
why not use an icon or an image from assets instead of an online image? Unnecessary network traffic
Analysis Report for a261752
Click to see the full report |
Test Results for a261752Click to see the full report✅ test-results.jsonNo tests found |
Analysis Report for 856b713
Click to see the full report |
mcquenji
left a comment
There was a problem hiding this comment.
Is the height of the instructions dialog with the MarkdownView still hardcoded? Or is it dynamic?
?
Reviewed 2 of 4 files at r2, 4 of 4 files at r3, all commit messages.
Reviewable status: 20 of 21 files reviewed, all discussions resolved (waiting on @cpolat-tgm)
This change is