We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server Driven UI 구현
서버로부터 전달받은 Dart 언어 레벨의 데이터를 파싱해서 Flutter 위젯으로 변환
서버 Response
"responseData": { "screenName": "Home", "contents": [ { "viewType": "BViewType", "content": { "title": "This is B ViewType" } }, { "viewType": "AViewType", "content": { "title": "This is A ViewType", "iconUrl": "https://avatars.githubusercontent.com/u/103282546?s=200&v=4" } }, { "viewType": "RichViewType", "content": { "title": "This is RichText ViewType", "richText": [ { "text": { "text": "이것은", "fontSize": 14 } }, { "text": { "text": "새로운", "fontSize": 16 } }, { "text": { "text": "Rich Text", "background": "yellow", "fontSize": 24 } }, { "text": { "text": "ViewType", "textColor": "red", "fontSize": 30 } }, { "text": { "text": "어떻게 구현할수 있을까요?", "textStyle": [ "underline" ], "textSize": 24 } }, { "image": { "url": "https://img.icons8.com/?size=512&id=63684&format=png", "width": 24, "height": 24 } } ] } } ] } }
The text was updated successfully, but these errors were encountered:
seungwone
No branches or pull requests
배경 소개
Server Driven UI 구현
기능 설명
서버로부터 전달받은 Dart 언어 레벨의 데이터를 파싱해서 Flutter 위젯으로 변환
요구사항
관련 자료
서버 Response
The text was updated successfully, but these errors were encountered: