본문 바로가기

개발일기

23.06.26 플러터 개발일기 JSONView 링크

 

JSONView

브라우저에서 JSON 문서를 보세요.

chrome.google.com

https://chrome.google.com/webstore/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd?hl=ko 

 

chrome 확장 프로그램 추가 

 

ListView.builder(

itemCount: 100, // 전체 아이템 개수

itemBuilder: (Context, index) {

// index는 0~99까지 증가하며 itemCount 만큼 호출

 

return Text("$index");

 

4-1강

JSONView 링크

 

API 인터넷 상의 데이터를 가져오는 것

 

동기 & 비동기

await async