This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:iMooDSSP/util/box_decoration.dart'; | |
| class Marcas extends StatefulWidget { | |
| @override | |
| _MarcasState createState() => _MarcasState(); | |
| } | |
| class _MarcasState extends State<Marcas> { | |
| Color colorMagenta = Color(0xFFD60B52); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:ui'; | |
| import 'package:flutter/material.dart'; | |
| class SpinKitRotatingPlain extends StatefulWidget { | |
| final Color color; | |
| final double size; | |
| final IndexedWidgetBuilder itemBuilder; | |
| final Duration duration; | |
| final AnimationController controller; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SecondPage extends StatefulWidget { | |
| @override | |
| _SecondPageState createState() => _SecondPageState(); | |
| } | |
| class _SecondPageState extends State<SecondPage> { | |
| static double containerHeight = 120; | |
| static double containerWidth = 500; | |
| List<Widget> itemsDishes = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class ListFirstPage extends StatefulWidget { | |
| @override | |
| _ListFirstPageState createState() => _ListFirstPageState(); | |
| } | |
| class _ListFirstPageState extends State<ListFirstPage> { | |
| @override | |
| Widget build(BuildContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class ListFirstPage extends StatefulWidget { | |
| @override | |
| _ListFirstPageState createState() => _ListFirstPageState(); | |
| } | |
| class _ListFirstPageState extends State<ListFirstPage> { | |
| @override | |
| Widget build(BuildContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class Consts { | |
| Consts._(); | |
| static const double padding = 16.0; | |
| static const double buttonPadding = 5.0; | |
| } | |
| class ExampleDialogText extends StatefulWidget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class ExampleLoginFocus extends StatefulWidget { | |
| @override | |
| _ExampleLoginFocusState createState() => _ExampleLoginFocusState(); | |
| } | |
| class _ExampleLoginFocusState extends State<ExampleLoginFocus> { | |
| bool _obscureText = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class Profile extends StatefulWidget { | |
| String nombreProfile = ''; | |
| String apellidoProfile = ''; | |
| @override | |
| _ProfileState createState() => | |
| _ProfileState(apellidoUser: apellidoProfile, nombreUser: nombreProfile); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| class RodriTestPage extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| backgroundColor: Colors.white, | |
| appBar: AppBar( | |
| title: Text( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class HomeScreenLocal extends StatefulWidget { | |
| @override | |
| _HomeScreenLocalState createState() => _HomeScreenLocalState(); | |
| } | |
| class _HomeScreenLocalState extends State<HomeScreenLocal> { | |
| @override | |
| Widget build(BuildContext context) { |
NewerOlder