Skip to content

Instantly share code, notes, and snippets.

@knaeckeKami
Created April 4, 2023 14:32
Show Gist options
  • Save knaeckeKami/62e0cb15656f11d81bf93e1bfa1867d6 to your computer and use it in GitHub Desktop.
Save knaeckeKami/62e0cb15656f11d81bf93e1bfa1867d6 to your computer and use it in GitHub Desktop.
silent-ritual-3131
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: Column(
children: [
InkWell(
onTap: () {},
child: Column(
children: [
GestureDetector(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text("no ripple"),
),
onTap: () {},
behavior: HitTestBehavior.opaque,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("*** ripple *** "),
)
],
),
),
],
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment