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
$stripeErrorMessages = [ | |
'account_already_exists' => 'Já existe uma conta com este email.', | |
'account_country_invalid_address' => 'O endereço fornecido não é válido para o país especificado.', | |
'account_invalid' => 'A conta é inválida.', | |
'account_number_invalid' => 'O número da conta é inválido.', | |
'alipay_upgrade_required' => 'É necessário atualizar para uma conta do Alipay.', | |
'amount_too_large' => 'O valor é muito grande.', | |
'amount_too_small' => 'O valor é muito pequeno.', | |
'api_key_expired' => 'A chave de API expirou.', | |
'authentication_required' => 'É necessário autenticação para completar a transação.', |
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'; | |
void main() { | |
runApp(TabBarDemo()); | |
} | |
class TabBarDemo extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
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:cloud_firestore/cloud_firestore.dart'; | |
import 'package:flutter/material.dart'; | |
class Clientes extends StatefulWidget { | |
@override | |
_ClientesState createState() => _ClientesState(); | |
} | |
class _ClientesState extends State<Clientes> { |