Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Joaquin Iurchuk
2022-01-02 01:13:28 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2022-01-02 01:13:28 -0300
Commit
963f029d7cf7cda0bb49566a0a22fe8de6084512
963f029d
1 parent
6480b964
Personalizable radius
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
lib/get_navigation/src/extension_navigation.dart
lib/get_navigation/src/extension_navigation.dart
View file @
963f029
...
...
@@ -192,7 +192,7 @@ extension ExtensionDialog on GetInterface {
color:
buttonColor
??
theme
.
colorScheme
.
secondary
,
width:
2
,
style:
BorderStyle
.
solid
),
borderRadius:
BorderRadius
.
circular
(
100
)),
borderRadius:
BorderRadius
.
circular
(
radius
)),
),
onPressed:
()
{
onCancel
?.
call
();
...
...
@@ -215,7 +215,7 @@ extension ExtensionDialog on GetInterface {
tapTargetSize:
MaterialTapTargetSize
.
shrinkWrap
,
backgroundColor:
buttonColor
??
theme
.
colorScheme
.
secondary
,
shape:
RoundedRectangleBorder
(
borderRadius:
BorderRadius
.
circular
(
100
)),
borderRadius:
BorderRadius
.
circular
(
radius
)),
),
child:
Text
(
textConfirm
??
"Ok"
,
...
...
Please
register
or
login
to post a comment