docker pull rabbitmq:management
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
| package com.example.demo.view | |
| import org.junit.Assert | |
| import org.junit.Test | |
| import org.testfx.api.FxToolkit | |
| import org.junit.Assert.* | |
| import javafx.beans.property.SimpleStringProperty | |
| import javafx.scene.Node | |
| import javafx.scene.control.* | |
| import javafx.scene.layout.Background | |
| import javafx.scene.layout.BackgroundFill |
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'; | |
| final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatefulWidget { | |
| @override |
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:math'; | |
| import 'dart:ui'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:google_maps_flutter/google_maps_flutter.dart'; | |
| void main() { | |
| runApp(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
| import 'package:flutter/material.dart'; | |
| import 'package:app_name/routes.dart'; | |
| class MainView extends StatefulWidget { | |
| final GlobalKey<NavigatorState> navigatorKey; | |
| MainView(this.navigatorKey); | |
| @override | |
| _MainViewState createState() => _MainViewState(); |
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:io'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:google_maps_flutter/google_maps_flutter.dart'; | |
| import 'package:provider/provider.dart'; | |
| import 'package:clippy_flutter/clippy_flutter.dart'; | |
| void main() { | |
| runApp( | |
| ChangeNotifierProvider( |
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/cupertino.dart'; | |
| import 'package:hooks_riverpod/hooks_riverpod.dart'; | |
| import 'package:location/location.dart'; | |
| class PersonLocationProvider extends ChangeNotifier { | |
| Location _location = new Location(); | |
| PermissionStatus _permissionGranted; | |
| StreamController<LocationData> currentLocation = StreamController.broadcast(); |
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 'dart:math'; | |
| import 'package:dartz/dartz.dart'; | |
| import 'package:flutter/cupertino.dart'; | |
| import 'package:flutter/services.dart'; | |
| import 'package:flutter_translator/flutter_translator.dart'; | |
| import 'package:google_maps_flutter/google_maps_flutter.dart'; | |
| import 'package:location/location.dart'; | |
| import 'package:permission_handler/permission_handler.dart' as handler; |
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'; | |
| const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
| void main() { | |
| runApp(EmailApp()); | |
| } | |
| class EmailApp extends StatelessWidget { | |
| @override |
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() { | |
| var state = AppState.instance; | |
| print(state.appName); | |
| } | |
| class AppState { | |
| String appName; | |
| AppState._internal(){ | |
| appName="FaceBook"; |
OlderNewer