개발/Application Develop 36

Android Sensor

센서 : https://developer.android.com/guide/topics/sensors/sensors_overview?hl=ko 센서 개요 | Android 개발자 | Android Developers 대부분의 Android 지원 기기에는 움직임, 방향 및 다양한 환경 조건을 측정하는 센서가 내장되어 있습니다. 이러한 센서는 높은 정밀도와 정확도로 원시 데이터를 제공하며 3차원으로 모니터링하 developer.android.com SensorManager : https://developer.android.com/reference/android/hardware/SensorManager SensorManager | Android Developers developer.android.com

Flutter HelloWorld Sample Code로 flutter 기초 개념 이해하기

import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { ( title: 'Welcome to Flutter', home: Scaffold( appBar: AppBar( title: Text('Welcome to Flutter'), ), body: Center( child: Text('Hello World'), ), ), ); } } HelloWorld Sample 코드로 Flutter의 기초를 익히자. 아래 링크에서 튜토리얼을 따라서 첫번째 앱을 구현해볼 수 있다. https://f..

Flutter 첫번째 앱 개발

https://youtu.be/_uOgXpEHNbc ►Source Code: https://cutt.ly/SbbtV4v GitHub - abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard: Responsive Admin Panel or Dashboard using Flutter Responsive Admin Panel or Dashboard using Flutter. Contribute to abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard development by creating an account on GitHub. github.com 우선은 Flutter 기능을 익히기 위해 위 튜토리얼을 따라했다. ..

Flutter 환경 설정, 첫 Flutter 앱 튜토리얼 따라하기

VS Code에 Flutter extension 설치하면 쉽게 환경설정 가능. 1. VS Code 설치 : https://code.visualstudio.com/ 2. Flutter SDK 설치 : https://flutter.dev/docs/get-started/install * 시스템 환경변수 등록해주기. 3. Android SDK 설치 : 에뮬레이터 활용 위해 설치 필요. -> https://developer.android.com/studio 설치 후 실행 - > Configuration -> AVD Manager를 통해 에뮬 생성 가능 4. VS Code 실행 - Extension 설치(Flutter / Rainbow Brackets - Dart 의 가독성을 높여준다고 합니다) 5. Flutter..

Android Material Design - motion

gamjatwigim.tistory.com/185 Material Design - Motion - 1 0. 서론 앱 개발을 하면서 꾸준하게 관심을 갖고 있던 부분이 있다. 그것은 바로, 레이아웃을 내가 원하는대로 자유롭게 그리는 것과 레이아웃을 내가 원하는대로 자유롭게 움직이는 것이다. 20 gamjatwigim.tistory.com material.io/design/motion/the-motion-system.html Material Design Build beautiful, usable products faster. Material Design is an adaptable system—backed by open-source code—that helps teams build high quality di..

Android 화면 구성 기초

1. Activity : 사용자에게 UI가 있는 화면을 제공하는 App Component(화면 관리자) - 앱은 보통 여러개의 Acitivity 로 이루어져 있고 각 액티비티는 느슨환 관계, 각 Activity는 하나의 윈도우에 그려진다. * Android 4대 Component - Activity - Service(Background) - Broadcast Receiver(이벤트 모델 수행) - Content Provider(App간 데이터 공유) 2. Intent : 어플리케이션 구성요소(Component)간 작업 수행을 위한 정보 전달 A---(Intent)-->B * A가 B를 호출할 때 필요한 정보를 담는다. => Android Activity 전환 StartActivity(Intent) // ..

반응형