34 lines
742 B
Dart
34 lines
742 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'splash.dart';
|
|
|
|
const String _name = 'Ivan Murashov';
|
|
const String intUrl = 'https://pos-api.dinect.com/20130701/';
|
|
const String intToken = '9fec83cdca38c357e6b65dbb17514cdd36bf2a08';
|
|
|
|
final httpClient = createHttpClient();
|
|
|
|
void main() {
|
|
runApp(new Checker());
|
|
}
|
|
|
|
class Checker extends StatelessWidget {
|
|
@override Widget build(BuildContext context) {
|
|
return new MaterialApp(title: "DemoApp", home: new SplashScreen());
|
|
}
|
|
}
|
|
|
|
abstract class BaseState<T> extends State<StatefulWidget> {
|
|
|
|
void faq() {
|
|
|
|
}
|
|
|
|
void logout() {
|
|
|
|
}
|
|
}
|
|
|
|
//DMUrl := 'http://pos-api-int.dinect.com/20130701/';
|
|
//DMAToken := '9fec83cdca38c357e6b65dbb17514cdd36bf2a08';
|