FLUTTER ECOSYSTEM

aswanath/flutter_dartpad

모바일 애플리케이션 내에서 사용할 수 있는 Dartpad

flutter_dartpad 프로젝트 이미지
Stars
7
Forks
0
최근 푸시(UTC)
2023. 3. 12.
프로젝트 상태
활성
Aswanath C K GitHub avatar
GITHUB User

Aswanath C K ↗

"I am a young and passionate mobile app developer who has chosen Flutter as my companion." idk if I am young anymore - life is getting serious.

ASBLPalakkad, Kerala공식 웹사이트 ↗
언어C++CMakeDartHTMLRubyCSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 4 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

A dart pad which can be easily embedded to mobile application with the help of web view.
Supports all the features listed in dart pad embedding guide

NOTE: Performance won't be great as it is working on web view.

import 'package:flutter/material.dart';
import 'package:flutter_dartpad/flutter_dartpad.dart';

void main() {
  runApp(
    MaterialApp(
      home: Scaffold(
        body: DartPad(
          code: 'void main() => print("Hello DartPad Widget");',
          embeddingChoice: EmbeddingChoice.dart,
        ),
      ),
    ),
  );
}

Following are the embedding choices:

EmbeddingChoice.dart
Dart Embedding
EmbeddingChoice.flutterShowcase
Flutter Showcase Embedding
EmbeddingChoice.flutter
Flutter Embedding
EmbeddingChoice.html
HTML Embedding
EmbeddingChoice.inline
Inline Embedding

Inspired to make this package and some code was borrowed from dart_pad_widget