Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Rafa Castillo Passols
/
Prototipo-Multimedia
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d039ede0
authored
Mar 06, 2025
by
Diego Pérez Peña
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Bug arreglado
parent
adcb0b2f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
lib/convertex_fab_bar.dart
lib/expandable_fab.dart
lib/convertex_fab_bar.dart
View file @
d039ede0
...
...
@@ -30,6 +30,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
children:
[
GestureDetector
(
onTap:
()
{
print
(
'Hola'
);
setState
(()
{
_agregarOpen
=
false
;
_convertirOpen
=
false
;
...
...
@@ -38,10 +39,13 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
_convertirKey
.
currentState
?.
close
();
},
),
Row
(
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
crossAxisAlignment:
CrossAxisAlignment
.
end
,
children:
[...
_buildFABs
()],
Align
(
alignment:
Alignment
.
bottomCenter
,
child:
Row
(
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
crossAxisAlignment:
CrossAxisAlignment
.
end
,
children:
[...
_buildFABs
()],
),
)
],
),
...
...
@@ -72,6 +76,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
_agregarOpen
=
false
;
_convertirOpen
=
!
_convertirOpen
;
});
print
(
"Hola"
);
_agregarKey
.
currentState
?.
close
();
_convertirKey
.
currentState
?.
tap
();
},
...
...
lib/expandable_fab.dart
View file @
d039ede0
...
...
@@ -78,7 +78,7 @@ class ExpandableFabState extends State<ExpandableFab>
Widget
build
(
BuildContext
context
)
{
return
Container
(
width:
_computeWidth
(),
height:
_open
?
56
+
(
widget
.
distance
*
widget
.
children
.
length
)
:
(
MediaQuery
.
of
(
context
).
size
.
height
)
,
height:
_open
?
56
+
(
widget
.
distance
*
widget
.
children
.
length
)
:
56
,
child:
SizedBox
.
expand
(
child:
Stack
(
alignment:
widget
.
invert
?
Alignment
.
bottomLeft
:
Alignment
.
bottomRight
,
...
...
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