Skip to content

Instantly share code, notes, and snippets.

View andrempeixoto's full-sized avatar
🎯
Focusing

Andre Peixoto andrempeixoto

🎯
Focusing
View GitHub Profile
<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;
@andrempeixoto
andrempeixoto / main.dart
Last active January 27, 2021 13:52
Primeiro App Flutter com DartPad
import 'package:flutter/material.dart';
final _form = GlobalKey<FormState>();
void _realizarLogin() {
final isValid = _form.currentState.validate();
if (isValid) {
_form.currentState.save();
}
}