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
| Effective Date: 16th November, 2024 | |
| Merrton (“we,” “our,” or “us”) respects your privacy and is committed to protecting the personal information you share with us. This Privacy Policy outlines how Merrton collects, uses, and protects your information when you use our app, which provides automated replies for Instagram messaging to assist merchants in managing customer communication. | |
| 1. Information We Collect | |
| a. Account Information | |
| When you sign up for Merrton, we collect: | |
| • Your name, email address, and other contact information. |
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
| const range = (start, end, step = 1) => { | |
| let output = []; | |
| if (typeof end === 'undefined') { | |
| end = start; | |
| start = 0; | |
| } | |
| for (let i = start; i < end; i += step) { | |
| output.push(i); |
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
| export default function(){ | |
| const mousePosition = useMousePosition(); | |
| return( | |
| <div style={{ | |
| transition: "transform .2s ease", | |
| transform: `perspective(1000px) rotateX(${ | |
| mousePosition.x! * -0.02 | |
| }deg) rotateY(${mousePosition.y! * -0.02}deg)`, | |
| willChange: "transform", |
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
| composer global require leafs/cli |
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
| void main() { | |
| int rangeMapping(int input, int inputStart, int inputEnd, int outputStart, | |
| int outputEnd) { | |
| int output = (outputStart + | |
| ((outputEnd - outputStart) / (inputEnd - inputStart)) * | |
| (input - inputStart)) | |
| .toInt(); | |
| return output; |
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:provider/provider.dart'; | |
| import 'package:shared_preferences/shared_preferences.dart'; | |
| User? userLogin; | |
| class AssistantMethods with ChangeNotifier { | |
| Future<void> getSavedPrefs(context) async { | |
| SharedPreferences pref = await SharedPreferences.getInstance(); | |
| Provider.of<User>(context, listen: false).setUser( |
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 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:mobile_gyro_parallax/anothertest.dart'; | |
| import 'package:mobile_gyro_parallax/sizeconfig.dart'; | |
| import 'package:mobile_gyro_parallax/test_parallax.dart'; | |
| import 'package:sensors_plus/sensors_plus.dart'; | |
| void main() => runApp(MediaQ()); |