Skip to content

Instantly share code, notes, and snippets.

View atketan's full-sized avatar
:electron:
Meticulously entangled.

Ketan Bhavsar atketan

:electron:
Meticulously entangled.
View GitHub Profile
@atketan
atketan / flutter-development-with-chatgpt-articles-page-search-delegate-demo.dart
Created April 7, 2023 14:31
Code created by ChatGPT for an articles search and list demo app. This snippet provides a search delegate for the articles search page demo.
class ArticleSearchDelegate extends SearchDelegate<Article> {
final List<Article> articles;
ArticleSearchDelegate(this.articles);
@override
List<Widget> buildActions(BuildContext context) {
return [
IconButton(
icon: const Icon(Icons.clear),
@atketan
atketan / flutter-development-with-chatgpt-articles-details-page-demo.dart
Created April 7, 2023 14:36
Code created by ChatGPT for an articles search and list demo app. This creates an article details page.
import 'package:flutter/material.dart';
class ArticleDetailsPage extends StatelessWidget {
final String title;
final String author;
final String content;
const ArticleDetailsPage(
{Key? key,
required this.title,