분류 전체보기 (85) 썸네일형 리스트형 [주식 자동 매매] 개발 환경 설치 및 환경 설정 (Anaconda & PyCharm) 증권 : 키움 증권 API : 키움 증권 API Python 사용을 위한 Anaconda 설치 URL : www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 키움 증권 API 사용을 위해 32-Bit Graphical Installer 설치 Python 전용 IDE (Integrated Development Envrionment) PyCharm 설치 URL : http.. [Flutter] bottomNavigationBar bottomNavigationBar 의 높이는 constant const double kBottomNavigationBarHeight = 56.0 [Flutter] Admob 연동하기 pubspec.yaml dependencies: flutter_native_admob: ^2.1.0 android/build.gradle file 에 추가 dependencies { // Example existing classpath classpath 'com.android.tools.build:gradle:3.2.1' // Add the google services classpath classpath 'com.google.gms:google-services:4.3.0' } android/app/build.gradle file 에 추가 // ADD THIS AT THE BOTTOM apply plugin: 'com.google.gms.google-services' Firebase 사이트 접속하여 APP.. [Flutter] Widget 테두리 설정 (border) new Container( decoration: BoxDecoration( border: Border.all(), borderRadius: BorderRadius.all( Radius.circular( 4.0) // [Flutter] 이미지 파일 (assets) 설정 ldpi 0.75x mdpi 1.0x hdpi 1.5x xhdpi 2.0x xxhdpi 3.0x xxxhdpi 4.0x image 폴더 설정 images/my_icon.png // Base: 1.0x image images/2.0x/my_icon.png // 2.0x image images/3.0x/my_icon.png // 3.0x image pubspec.yaml 파일에 추가 assets: - images/my_icon.png 소스에 사용 Image.asset("images/my_image.png"); [Flutter] String 내에 특정 값을 포함하고 있는지 알고 싶을 때 String 내에 특정 String을 포함하고 있는지 알고 싶을 때, String str = "hello,friends"; str.contains(",") // return true; [Flutter] String to Int /double // String -> Int var one = int.parse('1'); // String -> double var one = double.parse('1'); // Int -> String String str = 1.toString(); // double -> String String str = 3.14159.toStringAsFixed(2); //3.14로 저장 [Flutter] TextField & TextFormField TextField & TextFormField는 값을 입력 받는 Widget. TextFormField 를 이용해 softkeyboard를 띄우지 않도록 설정 가능. new TextFormField(controller: converterInputTextController, //Text 받기 위한 controller textAlign: TextAlign.right, // Text 값 시작 위치 showCursor: true, // cursor visible readOnly: true, // softkeyboard disable decoration: new InputDecoration( border: InputBorder.none, // underline invisible ), ), 이전 1 ··· 7 8 9 10 11 다음