Skip to content

Instantly share code, notes, and snippets.

@loic-sharma
Created February 25, 2025 04:12
Show Gist options
  • Select an option

  • Save loic-sharma/f4ac9e7823b0eaeec663ed7e3f86bcd0 to your computer and use it in GitHub Desktop.

Select an option

Save loic-sharma/f4ac9e7823b0eaeec663ed7e3f86bcd0 to your computer and use it in GitHub Desktop.
Cupertino list tile separator is bad
import 'package:flutter/cupertino.dart';
void main() {
runApp(
CupertinoApp(
home: CupertinoPageScaffold(
child: CupertinoListSection(
children: <Widget>[
CupertinoListTile(title: Text('Foo')),
CupertinoListTile(title: Text('Bar')),
],
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment