'구글' 태그의 글 목록
본문 바로가기
728x90
반응형

구글6

2021.12.29_05.Flexible 1. Flexible 컨테이너 두개가 있을때 각 각 50% 너비를 주고 싶다면? width :50% 안됨 Flexible로 감싸면 됨 import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(), body: Row( children: [ Flexible(child: Container(color: Colors.. 2021. 12. 29.
GoLangWeb-OAuth2.0 https://github.com/3DPIT/golang/blob/master/05.GolangWeb/0810/01.OAuth2.0/2021%EB%85%8408%EC%9B%9410%EC%9D%BC_GoLangWeb-OAuth2.0.md GitHub - 3DPIT/golang Contribute to 3DPIT/golang development by creating an account on GitHub. github.com 2021. 8. 10.
고랭 설치 http://golang.org/dl Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases golang.org 이 웹사이트로 들어가서 윈도우가 깔린 컴퓨터이기 때문에 윈도우 버전을 설치해줍니다. 저렇게 GoWorkspace 폴더를 생성.. 2021. 4. 19.
WEB - 4일차 목차를 구분할수 있게 부모와 자식으로 해서 행을 구분해줬다고 생각 하시면 됩니다. ol은 odered list로 1. 으로 순서대로 자동으로 생성하여 나오게 하는 방식으로 자주 애용하면 좋을것 같습니다. 현재 사이트가 무엇인지 명시해주는 방법으로 title 태그를 사용합니다. 관용적으로 저런 구성으로 해줘야합니다. 다른 웹사이트를 봐도 대게 저렇게 시작해서 html head body 로 구성되어있습니다. 이렇게 문자에 링크를 걸수 있습니다. 태그를 이용하면되고 a는 anchor 입니다. 새탭으로 열리게 하고 싶으시면 이렇게 하시면 됩니다 . 실습해보세요. . 클릭하기전에 무엇인지 알리게 하고 싶으면 이렇게 하시면 됩니다. 정말 쉽지 않나요? 2020. 1. 8.
728x90
반응형