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 Input extends StatelessWidget { | |
var label = ""; | |
var nomeVariavel; | |
var formkey; | |
Input( | |
{@required this.label, | |
@required this.nomeVariavel, |
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:minhas_prescricoes/screens/utils.dart'; | |
import 'package:minhas_prescricoes/widgets/input_precricao.dart'; | |
class CadPrecricao extends StatefulWidget { | |
@override | |
_CadPrecricaoState createState() => _CadPrecricaoState(); | |
} | |
class _CadPrecricaoState extends State<CadPrecricao> { |
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
<script type="text/javascript" src="https://stc.pagseguro.uol.com.br/pagseguro/api/v2/checkout/pagseguro.directpayment.js"></script> | |
<script type="text/javascript"> | |
var paymentModule = 'pagseguro_app'; | |
checkoutCallbacks.add(pagseguroCheckout); | |
function pagseguroCheckout() { | |
if ($('input[name=module]').val() == paymentModule) { |
NewerOlder