Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
llswidget
Overview
Overview
Details
Activity
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
dart-package
llswidget
Commits
bb0830d4
Commit
bb0830d4
authored
Jul 23, 2021
by
Rizal Hermawan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat (lls_alert): add titleStyle and subtitleStyle to LLSAlert (show method). Story #1
parent
345e594d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/src/components/alert/lls_alert.dart
+6
-2
No files found.
lib/src/components/alert/lls_alert.dart
View file @
bb0830d4
...
...
@@ -262,7 +262,9 @@ abstract class LLSAlert {
Color
?
confirmButtonColor
,
String
?
cancelButtonText
,
String
?
confirmButtonText
,
LLSAlertStyle
style:
LLSAlertStyle
.
success
})
{
LLSAlertStyle
style:
LLSAlertStyle
.
success
,
TextStyle
?
titleStyle
,
TextStyle
?
subtitleStyle
})
{
LLSAlertOptions
options
=
LLSAlertOptions
(
showCancelButton:
showCancelButton
,
title:
title
,
...
...
@@ -272,7 +274,9 @@ abstract class LLSAlert {
confirmButtonColor:
confirmButtonColor
,
confirmButtonText:
confirmButtonText
,
cancelButtonText:
cancelButtonText
,
cancelButtonColor:
confirmButtonColor
);
cancelButtonColor:
confirmButtonColor
,
titleStyle:
titleStyle
!,
subtitleStyle:
subtitleStyle
!);
if
(
_state
!=
null
){
_state
!.
update
(
options
);
}
else
{
...
...
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