mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2026-08-25 01:05:36 +00:00
- Bump all apps to sdk >=3.0.0 <4.0.0 and add flutter_lints + a shared analysis_options.yaml to every app (flutter analyze is now green repo-wide) - Fix real compile errors in firebase_google_authentication and image_editor, plus deprecated APIs (Matrix4, SvgPicture.color, textScaleFactor), missing async 'mounted' guards, and misc lints via dart fix + manual fixes - Align pubspec 'name' with each folder and Android namespace/applicationId with the documented github.nisrulz.* convention - Convert bmi_calculator from a legacy Flutter module to a standard app with a proper android/ scaffold; fix missing android:exported in launcher manifests across 22 apps so all Android builds pass - Untrack generated build files (GeneratedPluginRegistrant, .flutter-plugins-dependencies) and ignore them
127 lines
3.6 KiB
Dart
127 lines
3.6 KiB
Dart
import 'package:english_words/english_words.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Infinite List',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue)
|
|
.copyWith(secondary: Colors.lightBlue)),
|
|
home: RandomWords(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class RandomWords extends StatefulWidget {
|
|
const RandomWords({super.key});
|
|
|
|
@override
|
|
createState() => RandomWordsState();
|
|
}
|
|
|
|
class RandomWordsState extends State<RandomWords> {
|
|
final _suggestions = <WordPair>[];
|
|
final _saved = <WordPair>{};
|
|
final _biggerFont = const TextStyle(fontSize: 18.0);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Infinite List'),
|
|
centerTitle: true,
|
|
actions: <Widget>[
|
|
IconButton(icon: Icon(Icons.list), onPressed: _pushSaved),
|
|
],
|
|
),
|
|
body: _buildSuggestions(),
|
|
);
|
|
}
|
|
|
|
void _pushSaved() {
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute(
|
|
builder: (context) {
|
|
final tiles = _saved.map(
|
|
(pair) {
|
|
return ListTile(
|
|
title: Text(
|
|
pair.asPascalCase,
|
|
style: _biggerFont,
|
|
),
|
|
);
|
|
},
|
|
);
|
|
final divided = ListTile.divideTiles(
|
|
context: context,
|
|
tiles: tiles,
|
|
).toList();
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Saved lists'),
|
|
),
|
|
body: ListView(children: divided),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildRow(WordPair pair) {
|
|
final alreadySaved = _saved.contains(pair);
|
|
return ListTile(
|
|
title: Text(
|
|
pair.asPascalCase,
|
|
style: _biggerFont,
|
|
),
|
|
trailing: Icon(
|
|
alreadySaved ? Icons.favorite : Icons.favorite_border,
|
|
color: alreadySaved ? Colors.red : null,
|
|
),
|
|
onTap: () {
|
|
setState(() {
|
|
if (alreadySaved) {
|
|
_saved.remove(pair);
|
|
} else {
|
|
_saved.add(pair);
|
|
}
|
|
});
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildSuggestions() {
|
|
return ListView.builder(
|
|
padding: const EdgeInsets.all(16.0),
|
|
// The itemBuilder callback is called once per suggested word pairing,
|
|
// and places each suggestion into a ListTile row.
|
|
// For even rows, the function adds a ListTile row for the word pairing.
|
|
// For odd rows, the function adds a Divider widget to visually
|
|
// separate the entries. Note that the divider may be difficult
|
|
// to see on smaller devices.
|
|
itemBuilder: (context, i) {
|
|
// Add a one-pixel-high divider widget before each row in theListView.
|
|
if (i.isOdd) return Divider();
|
|
|
|
// The syntax "i ~/ 2" divides i by 2 and returns an integer result.
|
|
// For example: 1, 2, 3, 4, 5 becomes 0, 1, 1, 2, 2.
|
|
// This calculates the actual number of word pairings in the ListView,
|
|
// minus the divider widgets.
|
|
final index = i ~/ 2;
|
|
// If you've reached the end of the available word pairings...
|
|
if (index >= _suggestions.length) {
|
|
// ...then generate 10 more and add them to the suggestions list.
|
|
_suggestions.addAll(generateWordPairs().take(10));
|
|
}
|
|
return _buildRow(_suggestions[index]);
|
|
});
|
|
}
|
|
}
|