Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Refactor/app shell #92

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

Merged
fulleni merged 26 commits into main from refactor/app-shell
Sep 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c2eb002
feat(l10n): add Arabic and English translations for about icon and cl...
fulleni Sep 25, 2025
3a32342
feat(app_shell): enhance navigation rail and simplify app bar
fulleni Sep 25, 2025
c7ada33
refactor(app_configuration): improve app configuration page layout
fulleni Sep 25, 2025
97ebae9
refactor(content_management): improve code formatting and structure
fulleni Sep 25, 2025
61187cf
style: format
fulleni Sep 25, 2025
d966b03
style: format
fulleni Sep 25, 2025
619dc4b
feat(settings): add about icon to settings page
fulleni Sep 25, 2025
9a4b38a
feat(ui): add about icon widget
fulleni Sep 25, 2025
2c5b818
feat(ui): add user navigation rail footer widget
fulleni Sep 25, 2025
241696a
feat(shared): add exports for new widgets
fulleni Sep 25, 2025
066fed5
refactor(app_shell): restructure navigation rail and app bar
fulleni Sep 25, 2025
6f532dd
feat(app_configuration): move about icon to app bar title
fulleni Sep 25, 2025
86b857e
feat(ui): add about icon to app bar titles and update user navigation...
fulleni Sep 25, 2025
a64cdab
style(app_configuration): adjust title spacing and remove font style
fulleni Sep 25, 2025
f972771
style(content_management): increase spacing between title and icon
fulleni Sep 25, 2025
d314ad0
style(settings): increase spacing between title and icon
fulleni Sep 25, 2025
6f87789
feat(AboutIcon): customize icon color and size
fulleni Sep 25, 2025
657623e
feat(app_shell): refactor navigation rail and add settings/logout tiles
fulleni Sep 25, 2025
11a5173
refactor: remove unused UserNavigationRailFooter widget
fulleni Sep 25, 2025
850f704
feat(navigator): extend navigator in more screen sizes
fulleni Sep 25, 2025
e8150dc
refactor(widgets): remove unused export
fulleni Sep 25, 2025
3c38f6d
style: misc
fulleni Sep 25, 2025
02502fb
style(content_management): decrease column spacing in headlines page
fulleni Sep 25, 2025
e51691f
style(content_management): improve layout and spacing of action buttons
fulleni Sep 25, 2025
ff69e0d
style(content_management): adjust padding for filter pages
fulleni Sep 25, 2025
016306c
style(spacing): adjust spacing between title and About icon
fulleni Sep 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: format
  • Loading branch information
fulleni committed Sep 25, 2025
commit 61187cfbf8b8903c5d00bb510dfaf764617ebc19
15 changes: 8 additions & 7 deletions lib/content_management/view/headlines_page.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class _HeadlinesPageState extends State<HeadlinesPage> {
context.read<ContentManagementBloc>().add(
LoadHeadlinesRequested(
limit: kDefaultRowsPerPage,
filter: context
.read<ContentManagementBloc>()
.buildHeadlinesFilterMap(context.read<HeadlinesFilterBloc>().state),
filter: context.read<ContentManagementBloc>().buildHeadlinesFilterMap(
context.read<HeadlinesFilterBloc>().state,
),
),
);
}
Expand All @@ -54,8 +54,9 @@ class _HeadlinesPageState extends State<HeadlinesPage> {
padding: const EdgeInsets.all(AppSpacing.lg),
child: BlocBuilder<ContentManagementBloc, ContentManagementState>(
builder: (context, state) {
final headlinesFilterState =
context.watch<HeadlinesFilterBloc>().state;
final headlinesFilterState = context
.watch<HeadlinesFilterBloc>()
.state;
final filtersActive = _areFiltersActive(headlinesFilterState);

if (state.headlinesStatus == ContentManagementStatus.loading &&
Expand Down Expand Up @@ -99,8 +100,8 @@ class _HeadlinesPageState extends State<HeadlinesPage> {
ElevatedButton(
onPressed: () {
context.read<HeadlinesFilterBloc>().add(
const HeadlinesFilterReset(),
);
const HeadlinesFilterReset(),
);
},
child: Text(l10n.resetFiltersButtonText),
),
Expand Down
10 changes: 5 additions & 5 deletions lib/content_management/view/sources_page.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class _SourcesPageState extends State<SourcesPage> {
context.read<ContentManagementBloc>().add(
LoadSourcesRequested(
limit: kDefaultRowsPerPage,
filter: context
.read<ContentManagementBloc>()
.buildSourcesFilterMap(context.read<SourcesFilterBloc>().state),
filter: context.read<ContentManagementBloc>().buildSourcesFilterMap(
context.read<SourcesFilterBloc>().state,
),
),
);
}
Expand Down Expand Up @@ -99,8 +99,8 @@ class _SourcesPageState extends State<SourcesPage> {
ElevatedButton(
onPressed: () {
context.read<SourcesFilterBloc>().add(
const SourcesFilterReset(),
);
const SourcesFilterReset(),
);
},
child: Text(l10n.resetFiltersButtonText),
),
Expand Down
10 changes: 5 additions & 5 deletions lib/content_management/view/topics_page.dart
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class _TopicPageState extends State<TopicPage> {
context.read<ContentManagementBloc>().add(
LoadTopicsRequested(
limit: kDefaultRowsPerPage,
filter: context
.read<ContentManagementBloc>()
.buildTopicsFilterMap(context.read<TopicsFilterBloc>().state),
filter: context.read<ContentManagementBloc>().buildTopicsFilterMap(
context.read<TopicsFilterBloc>().state,
),
),
);
}
Expand Down Expand Up @@ -95,8 +95,8 @@ class _TopicPageState extends State<TopicPage> {
ElevatedButton(
onPressed: () {
context.read<TopicsFilterBloc>().add(
const TopicsFilterReset(),
);
const TopicsFilterReset(),
);
},
child: Text(l10n.resetFiltersButtonText),
),
Expand Down

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /