목록코드 (3)
투케이2K
[개발 환경 설정]개발 툴 : AndroidStudio개발 언어 : Dart [원본 : main.dart 소스 코드]import 'package:flutter/material.dart';void main() { runApp(const MyApp());}class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( // This is..
[개발 환경 설정] 개발 툴 : VS CODE 개발 언어 : Vue Js [소스 코드] {{ msg }} [결과 출력]
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [소스 코드] // ----------------------------------------- // [커스텀 버튼 생성 실시] let button = UIButton( frame: CGRect( x: self.view.frame.size.width - 70, // 가로 마진 y: statusBarHeight + 15, // 세로 마진 width: 50, // 가로 크기 height: 50 // 세로 크기 ) ) // 마진 및 사이즈 지정 button.backgroundColor = .white // 배경 색상 지정 button.setTitle("", for: .normal) // 타이틀 지정 button.setImage(UIIma..