Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
FLauncher
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
FLauncher
FLauncher
Commits
e64b43e2
Commit
e64b43e2
authored
3 years ago
by
Étienne
Browse files
Options
Downloads
Patches
Plain Diff
feat: set some colors
parent
8457b9b2
No related branches found
Branches containing commit
Tags
0.4.0
Tags containing commit
1 merge request
!27
Better scroll with focus
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/flauncher.dart
+1
-1
1 addition, 1 deletion
lib/flauncher.dart
lib/main.dart
+4
-2
4 additions, 2 deletions
lib/main.dart
lib/widgets/right_panel_dialog.dart
+1
-1
1 addition, 1 deletion
lib/widgets/right_panel_dialog.dart
with
6 additions
and
4 deletions
lib/flauncher.dart
+
1
−
1
View file @
e64b43e2
...
...
@@ -146,7 +146,7 @@ class _FLauncherState extends State<FLauncher> {
height:
MediaQuery
.
of
(
context
)
.
size
.
height
,
width:
MediaQuery
.
of
(
context
)
.
size
.
width
,
)
:
Container
(
color:
Colors
.
white12
);
:
Container
(
color:
Theme
.
of
(
context
)
.
backgroundColor
);
SliverGridDelegate
_gridDelegate
()
=
>
SliverGridDelegateWithFixedCrossAxisCount
(
...
...
This diff is collapsed.
Click to expand it.
lib/main.dart
+
4
−
2
View file @
e64b43e2
...
...
@@ -81,9 +81,11 @@ class App extends StatelessWidget {
{
LogicalKeySet
(
LogicalKeyboardKey
.
select
)
:
ActivateIntent
()}),
title:
'FLauncher'
,
theme:
ThemeData
.
dark
()
.
copyWith
(
colorScheme:
ColorScheme
.
dark
(
primary:
Colors
.
white
),
colorScheme:
ColorScheme
.
dark
(
primary:
Color
(
0xFFD8E6F2
)),
backgroundColor:
Color
(
0xFF011526
),
dialogBackgroundColor:
Color
(
0xFF011526
),
toggleableActiveColor:
Color
(
0xFFAAB5BF
),
typography:
Typography
.
material2018
(),
buttonTheme:
ButtonThemeData
(
highlightColor:
Colors
.
transparent
),
appBarTheme:
AppBarTheme
(
elevation:
0
,
backgroundColor:
Colors
.
transparent
,
...
...
This diff is collapsed.
Click to expand it.
lib/widgets/right_panel_dialog.dart
+
1
−
1
View file @
e64b43e2
...
...
@@ -35,7 +35,7 @@ class RightPanelDialog extends StatelessWidget {
alignment:
Alignment
.
centerRight
,
child:
Container
(
padding:
EdgeInsets
.
all
(
16
),
color:
Colors
.
grey
[
900
]
,
color:
Theme
.
of
(
context
)
.
backgroundColor
,
width:
width
,
child:
child
,
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment