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:deeplink_live/app/modules/posts/posts_page.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_getit/flutter_getit.dart'; | |
| class PostsRoute extends FlutterGetItModule { | |
| @override | |
| List<Bind> get bindings => []; | |
| @override | |
| String get moduleRouteName => '/'; |
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:deeplink_live/app/modules/posts/posts_route.dart'; | |
| import 'package:deeplink_live/app/modules/splash/splash_route.dart'; | |
| import 'package:dio/dio.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_getit/flutter_getit.dart'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } |
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
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <application | |
| android:label="deeplink_live" | |
| android:name="${applicationName}" | |
| android:icon="@mipmap/ic_launcher"> | |
| <activity | |
| android:name=".MainActivity" | |
| android:exported="true" | |
| android:launchMode="singleTop" | |
| android:theme="@style/LaunchTheme" |
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
| <?php | |
| namespace App\Helpers; | |
| use Illuminate\Support\Facades\DB; | |
| use Illuminate\Support\Facades\Schema; | |
| /** | |
| * | |
| */ |
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:convert'; | |
| import 'package:epocpdv/src/core/extensions/strings_extension.dart'; | |
| import 'package:epocpdv/src/core/helpers/utils.dart'; | |
| import 'package:isar/isar.dart'; | |
| part 'ativacao_model.g.dart'; | |
| @Name('ativacao') | |
| @Collection() |
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
| // ignore_for_file: public_member_api_docs, sort_constructors_first | |
| import 'dart:convert'; | |
| import 'package:epocpdv/src/data/model/cargas/funcionario_model.dart'; | |
| import 'package:isar/isar.dart'; | |
| part 'user_model.g.dart'; | |
| class UserModel { | |
| final int id; |
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 cart = [{ | |
| name: 'Pizza de calebreza', | |
| amount: 10, | |
| qty: 2, | |
| addons: [{ | |
| 'name': 'Extra calabreza', | |
| 'amount': 1.5 | |
| }, | |
| { | |
| 'name': 'Borda recheada', |
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:esc_pos_utils/esc_pos_utils.dart'; | |
| import 'package:get/get.dart'; | |
| import 'package:viapp_totem/app/core/printers/elgin_printer_device.dart'; | |
| import 'package:viapp_totem/app/core/printers/physical_printer.dart'; | |
| import 'package:viapp_totem/app/core/printers/network_printer.dart'; | |
| import 'package:viapp_totem/app/core/printers/sunmi_printer.dart'; | |
| class GeneralPrinterContorller extends GetxController { | |
| PhysicalPrinter get physical => PhysicalPrinter.instance; | |
| NetWorkPrint get network => NetWorkPrint.instance; |
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:get/get.dart'; | |
| import 'package:getxdinamico/app/modules/home/components/navigation_bottom_page.dart'; | |
| import 'package:getxdinamico/app/modules/home/components/navigation_drawer.dart'; | |
| import 'package:getxdinamico/app/modules/home/components/navigation_rail_page.dart'; | |
| import 'package:getxdinamico/app/modules/home/components/navigator_page.dart'; | |
| import './home_controller.dart'; | |
| class HomePage extends GetResponsiveView<HomeController> { |