Created
October 30, 2023 21:24
-
-
Save dmslabsbr/fb4522712c55a829db6a072c6bd85f23 to your computer and use it in GitHub Desktop.
FlutterFlow Action Codes
This file contains 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
// Automatic FlutterFlow imports | |
import '/backend/schema/structs/index.dart'; | |
import '/backend/supabase/supabase.dart'; | |
import '/flutter_flow/flutter_flow_theme.dart'; | |
import '/flutter_flow/flutter_flow_util.dart'; | |
import '/custom_code/actions/index.dart'; // Imports other custom actions | |
import '/flutter_flow/custom_functions.dart'; // Imports custom functions | |
import 'package:flutter/material.dart'; | |
// Begin custom action code | |
// DO NOT REMOVE OR MODIFY THE CODE ABOVE! | |
Future<String> getURLparameters() async { | |
// Add your function code here! | |
print("Uri.base: " + Uri.base.toString()); | |
print("Uri.base.query: " + Uri.base.query); | |
print("Uri.base.query x: " + Uri.base.queryParameters['x']!); | |
print("Uri.base.query parametro: " + Uri.base.queryParameters['parametro']!); | |
return Uri.base.toString(); | |
} |
Author
dmslabsbr
commented
Nov 20, 2023
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment