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
a9e75540
authored
Mar 07, 2025
by
Tecnicos
Browse files
Options
_('Browse Files')
Download
Plain Diff
Bug arreglado y ordenación de archivos
parents
f9ffbd50
84f27acd
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
11 deletions
lib/archivo_individual.dart → lib/modelo/archivo_individual.dart
lib/carpeta.dart → lib/modelo/carpeta.dart
lib/conversion.dart → lib/modelo/conversion.dart
lib/elemento_seleccionable.dart → lib/modelo/elemento_seleccionable.dart
lib/enlace.dart → lib/modelo/enlace.dart
lib/formato.dart → lib/modelo/formato.dart
lib/perfil.dart → lib/modelo/perfil.dart
lib/paginas/pagina_principal.dart
lib/action_button.dart → lib/widget/action_button.dart
lib/convertex_fab_bar.dart → lib/widget/convertex_fab_bar.dart
lib/expandable_fab.dart → lib/widget/expandable_fab.dart
lib/archivo_individual.dart
→
lib/
modelo/
archivo_individual.dart
View file @
a9e75540
import
'conversion.dart'
;
import
'
./
conversion.dart'
;
import
'elemento_seleccionable.dart'
;
import
'
./
elemento_seleccionable.dart'
;
class
ArchivoIndividual
extends
ElementoSeleccionable
{
class
ArchivoIndividual
extends
ElementoSeleccionable
{
final
Conversion
_conversion
;
final
Conversion
_conversion
;
...
...
lib/carpeta.dart
→
lib/
modelo/
carpeta.dart
View file @
a9e75540
import
'conversion.dart'
;
import
'
./
conversion.dart'
;
import
'elemento_seleccionable.dart'
;
import
'
./
elemento_seleccionable.dart'
;
import
'formato.dart'
;
import
'formato.dart'
;
class
Carpeta
extends
ElementoSeleccionable
{
class
Carpeta
extends
ElementoSeleccionable
{
...
...
lib/conversion.dart
→
lib/
modelo/
conversion.dart
View file @
a9e75540
File moved
lib/elemento_seleccionable.dart
→
lib/
modelo/
elemento_seleccionable.dart
View file @
a9e75540
File moved
lib/enlace.dart
→
lib/
modelo/
enlace.dart
View file @
a9e75540
File moved
lib/formato.dart
→
lib/
modelo/
formato.dart
View file @
a9e75540
File moved
lib/perfil.dart
→
lib/
modelo/
perfil.dart
View file @
a9e75540
File moved
lib/paginas/pagina_principal.dart
View file @
a9e75540
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:prueba_multimedia/convertex_fab_bar.dart'
;
import
'package:prueba_multimedia/
widget/
convertex_fab_bar.dart'
;
import
'pagina_principal_llena.dart'
;
import
'pagina_principal_llena.dart'
;
import
'pagina_principal_vacia.dart'
;
import
'pagina_principal_vacia.dart'
;
...
...
lib/action_button.dart
→
lib/
widget/
action_button.dart
View file @
a9e75540
File moved
lib/convertex_fab_bar.dart
→
lib/
widget/
convertex_fab_bar.dart
View file @
a9e75540
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'action_button.dart'
;
import
'
./
action_button.dart'
;
import
'expandable_fab.dart'
;
import
'expandable_fab.dart'
;
class
ConVertexFabBar
extends
StatefulWidget
{
class
ConVertexFabBar
extends
StatefulWidget
{
...
@@ -30,6 +30,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
...
@@ -30,6 +30,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
children:
[
children:
[
GestureDetector
(
GestureDetector
(
onTap:
()
{
onTap:
()
{
print
(
'Hola'
);
setState
(()
{
setState
(()
{
_agregarOpen
=
false
;
_agregarOpen
=
false
;
_convertirOpen
=
false
;
_convertirOpen
=
false
;
...
@@ -38,10 +39,13 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
...
@@ -38,10 +39,13 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
_convertirKey
.
currentState
?.
close
();
_convertirKey
.
currentState
?.
close
();
},
},
),
),
Row
(
Align
(
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
alignment:
Alignment
.
bottomCenter
,
crossAxisAlignment:
CrossAxisAlignment
.
end
,
child:
Row
(
children:
[...
_buildFABs
()],
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
crossAxisAlignment:
CrossAxisAlignment
.
end
,
children:
[...
_buildFABs
()],
),
)
)
],
],
),
),
...
@@ -72,6 +76,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
...
@@ -72,6 +76,7 @@ class _ConVertexFabBarState extends State<ConVertexFabBar> {
_agregarOpen
=
false
;
_agregarOpen
=
false
;
_convertirOpen
=
!
_convertirOpen
;
_convertirOpen
=
!
_convertirOpen
;
});
});
print
(
"Hola"
);
_agregarKey
.
currentState
?.
close
();
_agregarKey
.
currentState
?.
close
();
_convertirKey
.
currentState
?.
tap
();
_convertirKey
.
currentState
?.
tap
();
},
},
...
...
lib/expandable_fab.dart
→
lib/
widget/
expandable_fab.dart
View file @
a9e75540
...
@@ -78,7 +78,7 @@ class ExpandableFabState extends State<ExpandableFab>
...
@@ -78,7 +78,7 @@ class ExpandableFabState extends State<ExpandableFab>
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
return
Container
(
return
Container
(
width:
_computeWidth
(),
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:
SizedBox
.
expand
(
child:
Stack
(
child:
Stack
(
alignment:
widget
.
invert
?
Alignment
.
bottomLeft
:
Alignment
.
bottomRight
,
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