Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flutter-toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
android
flutter-toolbox
Merge requests
!17
Resolve "Improve topbar buttons"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Improve topbar buttons"
18-improve-topbar-buttons
into
master
Overview
0
Commits
1
Pipelines
2
Changes
3
Merged
Benoît Harrault
requested to merge
18-improve-topbar-buttons
into
master
6 months ago
Overview
0
Commits
1
Pipelines
2
Changes
3
Closes
#18 (closed)
0
0
Merge request reports
Viewing commit
a091a99a
Show latest version
3 files
+
7
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
a091a99a
Improve topbar buttons
· a091a99a
Benoît Harrault
authored
6 months ago
lib/nav/application_navigation_definition.dart
+
2
−
2
View file @ a091a99a
Edit in single-file editor
Open in Web IDE
Show full file
@@ -77,10 +77,10 @@ class AppBarButton {
@@ -77,10 +77,10 @@ class AppBarButton {
});
});
Widget
render
(
BuildContext
context
)
{
Widget
render
(
BuildContext
context
)
{
return
Elevated
Button
(
return
Text
Button
(
onPressed:
()
=
>
onPressed
!
(
context
),
onPressed:
()
=
>
onPressed
!
(
context
),
onLongPress:
()
=
>
onLongPress
!
(
context
),
onLongPress:
()
=
>
onLongPress
!
(
context
),
style:
Elevated
Button
.
styleFrom
(
style:
Text
Button
.
styleFrom
(
shape:
const
CircleBorder
(),
shape:
const
CircleBorder
(),
iconColor:
Theme
.
of
(
context
)
.
colorScheme
.
onSurface
,
iconColor:
Theme
.
of
(
context
)
.
colorScheme
.
onSurface
,
),
),
Loading