Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
4b82d47b
Unverified
Commit
4b82d47b
authored
Feb 04, 2022
by
J-P Nurmi
Committed by
GitHub
Feb 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: adjust the flutter.material.RawMaterialButton.mouseCursor template (#88470)
parent
38dbfa2c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
1 deletion
+9
-1
button.dart
packages/flutter/lib/src/material/button.dart
+1
-1
floating_action_button.dart
...ages/flutter/lib/src/material/floating_action_button.dart
+2
-0
material_button.dart
packages/flutter/lib/src/material/material_button.dart
+2
-0
toggle_buttons.dart
packages/flutter/lib/src/material/toggle_buttons.dart
+4
-0
No files found.
packages/flutter/lib/src/material/button.dart
View file @
4b82d47b
...
...
@@ -127,9 +127,9 @@ class RawMaterialButton extends StatefulWidget {
/// * [MaterialState.hovered].
/// * [MaterialState.focused].
/// * [MaterialState.disabled].
/// {@endtemplate}
///
/// If this property is null, [MaterialStateMouseCursor.clickable] will be used.
/// {@endtemplate}
final
MouseCursor
?
mouseCursor
;
/// Defines the default text style, with [Material.textStyle], for the
...
...
packages/flutter/lib/src/material/floating_action_button.dart
View file @
4b82d47b
...
...
@@ -330,6 +330,8 @@ class FloatingActionButton extends StatelessWidget {
final
VoidCallback
?
onPressed
;
/// {@macro flutter.material.RawMaterialButton.mouseCursor}
///
/// If this property is null, [MaterialStateMouseCursor.clickable] will be used.
final
MouseCursor
?
mouseCursor
;
/// The z-coordinate at which to place this button relative to its parent.
...
...
packages/flutter/lib/src/material/material_button.dart
View file @
4b82d47b
...
...
@@ -131,6 +131,8 @@ class MaterialButton extends StatelessWidget {
final
ValueChanged
<
bool
>?
onHighlightChanged
;
/// {@macro flutter.material.RawMaterialButton.mouseCursor}
///
/// If this property is null, [MaterialStateMouseCursor.clickable] will be used.
final
MouseCursor
?
mouseCursor
;
/// Defines the button's base colors, and the defaults for the button's minimum
...
...
packages/flutter/lib/src/material/toggle_buttons.dart
View file @
4b82d47b
...
...
@@ -230,6 +230,8 @@ class ToggleButtons extends StatelessWidget {
final
void
Function
(
int
index
)?
onPressed
;
/// {@macro flutter.material.RawMaterialButton.mouseCursor}
///
/// If this property is null, [MaterialStateMouseCursor.clickable] will be used.
final
MouseCursor
?
mouseCursor
;
/// Configures the minimum size of the area within which the buttons may
...
...
@@ -843,6 +845,8 @@ class _ToggleButton extends StatelessWidget {
final
VoidCallback
?
onPressed
;
/// {@macro flutter.material.RawMaterialButton.mouseCursor}
///
/// If this property is null, [MaterialStateMouseCursor.clickable] will be used.
final
MouseCursor
?
mouseCursor
;
/// The width and color of the button's leading side border.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment