Skip to content

Instantly share code, notes, and snippets.

View k3ntar0's full-sized avatar
🐋
Relaxed

k3ntar0 k3ntar0

🐋
Relaxed
View GitHub Profile
@k3ntar0
k3ntar0 / index.html
Last active July 18, 2024 04:24
Claude 3.5 Sonnetで生成した物体検出アプリケーション
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Realtime Object Detection</title>
<style>
body { font-family: Arial, sans-serif; }
#canvas { border: 1px solid #000; }
table { border-collapse: collapse; margin-top: 20px; }
@k3ntar0
k3ntar0 / OutlinedDropdownButton.dart
Last active August 17, 2020 09:04
Customized dropdown_button widget
// ![](https://flutter.github.io/assets-for-api-docs/assets/material/dropdown_button.png)
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
/// This Widget is the main application widget.
class MyApp extends StatelessWidget {
static const String _title = 'Flutter Code Sample';