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
<form action="" method="get"> | |
<input type="text" name="search" required="required" placeholder="type here"/> | |
<input type="reset" value="" alt="clear" /> | |
</form> | |
<style> | |
input[type="text"] | |
{ | |
height: 38px; | |
font-size: 15pt; |
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'; | |
final _form = GlobalKey<FormState>(); | |
void _realizarLogin() { | |
final isValid = _form.currentState.validate(); | |
if (isValid) { | |
_form.currentState.save(); | |
} | |
} |