Windows Service with Python 3.5 and pyinstaller
- Python 3.5.x
- Visual C++ Build Tools 2015
- PyInstaller 3.2
unit vkbdhelper; | |
{ | |
Force focused control visible when Android/IOS Virtual Keyboard showed or hiden | |
How to use: | |
place vkdbhelper into your project uses section. No more code needed. | |
== Known issues == : | |
* after device rotation keyboard can change height without form notification. | |
this can move focused control to wrong y-coord... |
from __future__ import with_statement | |
from alembic import context | |
from sqlalchemy import engine_from_config, pool, MetaData, Table, ForeignKeyConstraint | |
from logging.config import fileConfig | |
# this is the Alembic Config object, which provides | |
# access to the values within the .ini file in use. | |
config = context.config | |
# Interpret the config file for Python logging. |
Windows Service with Python 3.5 and pyinstaller
from flask_cors import CORS | |
socketio = SocketIO() | |
app = Flask(__name__) | |
CORS(app) | |
# CONFIGURACAO | |
socketio.init_app(app, ping_timeout=1800, binary=True, max_http_buffer_size=10000000000) | |
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:tree_view/tree_view.dart'; | |
import 'dart:collection'; | |
class Folder { | |
String descricao; | |
String id; | |
Folder({this.descricao, this.id}); |