Moshe Dicker

Results 208 comments of Moshe Dicker

@simolus3 Why can't we create both tables and then add the foreign key columns afterward. This is what Django does.

e.g. ```python from django.db import models class Student(models.Model): name = models.CharField(max_length=100) group = models.ForeignKey("StudentGroup", on_delete=models.CASCADE) class StudentGroup(models.Model): name = models.CharField(max_length=100) top_student = models.ForeignKey( Student, on_delete=models.CASCADE, related_name="top_student" ) ``` There is...

You don't need to use it but it's just an easier way to write queries. What was the manager bug? If there is a bug I want to fix it.

@simolus3 This error message should probably be clarified.

Oh, but that would just print a warning, those can be ignored

Would you mind sharing it? Or at least just the table definitions which were causing this issue?

@rrousselGit Should I spend time adding this, or is the macro version of this going to fix this issue?

There seems to be some confusion about what this issue is about. Is the focus of this issue that the fluttered team does not have the resources to add expressive...

Does this issue represent a rethinking of this issue? In that issue the team concluded that Material would continue to be developed inside of Flutter itself. Is the team having...

I don't think it's unreasonable to require than the developer clean up any java code before shutting down the isolate. However, I if your goal is to make jni "just...