native_swiftui_pastebutton_and_textfield 1.0.7 native_swiftui_pastebutton_and_textfield: ^1.0.7 copied to clipboard
This is a plugin that provides a paste button and text field from Native SwiftUI as widgets in Flutter.
import 'package:flutter/material.dart';
import 'View.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Native Test',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.lightBlueAccent),
useMaterial3: false,
),
home: const MainPage(),
);
}
}